@storm-software/prettier 0.59.0 → 0.59.2
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/.prettierignore +7 -3
- package/.prettierignore-exclude-packagejson +8 -6
- package/README.md +1 -1
- package/exclude-packagejson.json +104 -0
- package/package.json +3 -3
package/.prettierignore
CHANGED
|
@@ -81,9 +81,12 @@ bun.lockb
|
|
|
81
81
|
**/next-env.d.ts
|
|
82
82
|
**/node_modules
|
|
83
83
|
**/npm-lock.*
|
|
84
|
-
**/nx
|
|
85
|
-
**/nx
|
|
86
|
-
**/nx
|
|
84
|
+
**/nx/**/schema.d.ts
|
|
85
|
+
**/nx/**/*.schema.d.ts
|
|
86
|
+
**/nx/**/schema.json
|
|
87
|
+
**/nx/**/*.schema.json
|
|
88
|
+
**/nx/**/schema.md
|
|
89
|
+
**/nx/**/*.schema.md
|
|
87
90
|
**/nx/**/generators/**/files
|
|
88
91
|
**/output
|
|
89
92
|
**/package-lock.*
|
|
@@ -99,3 +102,4 @@ bun.lockb
|
|
|
99
102
|
**/workbox*.js
|
|
100
103
|
**/yarn.lock
|
|
101
104
|
**/yarn.lock.*
|
|
105
|
+
**/capnp
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
**/package.json
|
|
2
|
-
|
|
3
|
-
// From .prettierignore:
|
|
4
|
-
|
|
5
2
|
.alexignore
|
|
6
3
|
.prettierignore
|
|
7
4
|
npm-lock.json
|
|
@@ -85,9 +82,12 @@ bun.lockb
|
|
|
85
82
|
**/next-env.d.ts
|
|
86
83
|
**/node_modules
|
|
87
84
|
**/npm-lock.*
|
|
88
|
-
**/nx
|
|
89
|
-
**/nx
|
|
90
|
-
**/nx
|
|
85
|
+
**/nx/**/schema.d.ts
|
|
86
|
+
**/nx/**/*.schema.d.ts
|
|
87
|
+
**/nx/**/schema.json
|
|
88
|
+
**/nx/**/*.schema.json
|
|
89
|
+
**/nx/**/schema.md
|
|
90
|
+
**/nx/**/*.schema.md
|
|
91
91
|
**/nx/**/generators/**/files
|
|
92
92
|
**/output
|
|
93
93
|
**/package-lock.*
|
|
@@ -103,3 +103,5 @@ bun.lockb
|
|
|
103
103
|
**/workbox*.js
|
|
104
104
|
**/yarn.lock
|
|
105
105
|
**/yarn.lock.*
|
|
106
|
+
**/capnp
|
|
107
|
+
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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.
|
|
3
|
+
"version": "0.59.2",
|
|
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-
|
|
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": "
|
|
106
|
+
"gitHead": "7403913b4932d83f02ddd1ae82ee17634d14a613"
|
|
107
107
|
}
|