@storm-software/prettier 0.59.0 → 0.59.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-0.58.24-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-0.58.25-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -0,0 +1,104 @@
1
+ {
2
+ "proseWrap": "preserve",
3
+ "trailingComma": "none",
4
+ "tabWidth": 2,
5
+ "semi": true,
6
+ "singleQuote": false,
7
+ "quoteProps": "as-needed",
8
+ "insertPragma": false,
9
+ "bracketSameLine": true,
10
+ "printWidth": 80,
11
+ "bracketSpacing": true,
12
+ "arrowParens": "avoid",
13
+ "endOfLine": "lf",
14
+ "overrides": [
15
+ {
16
+ "files": "**/{*.ts,*.tsx,*.mts,*.cts}",
17
+ "options": {
18
+ "parser": "typescript",
19
+ "singleQuote": false,
20
+ "trailingComma": "none",
21
+ "jsdocDescriptionWithDot": false,
22
+ "jsdocDescriptionTag": true,
23
+ "jsdocCommentLineStrategy": "multiline",
24
+ "jsdocCapitalizeDescription": true,
25
+ "jsdocSeparateTagGroups": true,
26
+ "jsdocPreferCodeFences": true,
27
+ "tsdoc": true
28
+ }
29
+ },
30
+ {
31
+ "files": "**/*.mdx",
32
+ "options": {
33
+ "semi": false,
34
+ "trailingComma": "none",
35
+ "parser": "mdx"
36
+ }
37
+ },
38
+ {
39
+ "files": "**/*.md",
40
+ "options": {
41
+ "semi": false,
42
+ "trailingComma": "none",
43
+ "parser": "markdown"
44
+ }
45
+ },
46
+ {
47
+ "files": "**/*.toml",
48
+ "options": {
49
+ "parser": "toml",
50
+ "alignEntries": true,
51
+ "alignComments": true,
52
+ "arrayAutoExpand": true,
53
+ "arrayAutoCollapse": true,
54
+ "compactArrays": true,
55
+ "compactInlineTables": false,
56
+ "compactEntries": false,
57
+ "indentTables": false,
58
+ "indentEntries": false,
59
+ "reorderKeys": false,
60
+ "allowedBlankLines": 1
61
+ }
62
+ },
63
+ {
64
+ "files": "**/*.svg",
65
+ "options": {
66
+ "parser": "html"
67
+ }
68
+ },
69
+ {
70
+ "files": "**/*.{json,jsonc,json5}",
71
+ "options": {
72
+ "parser": "json",
73
+ "trailingComma": "none",
74
+ "objectWrap": "preserve"
75
+ }
76
+ },
77
+ {
78
+ "files": "**/*.hbs",
79
+ "options": {
80
+ "parser": "html"
81
+ }
82
+ },
83
+ {
84
+ "files": "**/*.prisma",
85
+ "options": {
86
+ "parser": "prisma-parse"
87
+ }
88
+ },
89
+ {
90
+ "files": "**/{*.acid,*.aci,*.acidic}",
91
+ "options": {
92
+ "parser": "prisma-parse"
93
+ }
94
+ }
95
+ ],
96
+ "plugins": [
97
+ "prettier-plugin-sh",
98
+ "prettier-plugin-toml",
99
+ "prettier-plugin-jsdoc",
100
+ "prettier-plugin-organize-imports",
101
+ "prettier-plugin-prisma"
102
+ ],
103
+ "organizeImportsSkipDestructiveCodeActions": false
104
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/prettier",
3
- "version": "0.59.0",
3
+ "version": "0.59.1",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
6
6
  "keywords": [
@@ -61,7 +61,7 @@
61
61
  "./package.json",
62
62
  "./prisma.json",
63
63
  "./recommended.json",
64
- "./exclude-package-json.json",
64
+ "./exclude-packagejson.json",
65
65
  "./solidity.json",
66
66
  "./tailwindcss.json"
67
67
  ],
@@ -103,5 +103,5 @@
103
103
  "prettier-plugin-toml": { "optional": false }
104
104
  },
105
105
  "publishConfig": { "access": "public" },
106
- "gitHead": "e7963b8546961a1c31a76fbb23f27be1ac25ba17"
106
+ "gitHead": "32a1c767b09eb0b4cff78245f87d5439a158dc1d"
107
107
  }