@storm-software/prettier 0.58.25 → 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/.prettierignore-exclude-packagejson +105 -0
- package/README.md +2 -1
- package/exclude-packagejson.json +104 -0
- package/package.json +34 -30
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
**/package.json
|
|
2
|
+
|
|
3
|
+
// From .prettierignore:
|
|
4
|
+
|
|
5
|
+
.alexignore
|
|
6
|
+
.prettierignore
|
|
7
|
+
npm-lock.json
|
|
8
|
+
pnpm-lock.json
|
|
9
|
+
yarn.lock.json
|
|
10
|
+
npm-lock.yml
|
|
11
|
+
pnpm-lock.yml
|
|
12
|
+
pnpm-workspace.yaml
|
|
13
|
+
yarn.lock.yml
|
|
14
|
+
npm-lock.yaml
|
|
15
|
+
pnpm-lock.yaml
|
|
16
|
+
yarn.lock.yaml
|
|
17
|
+
bun.lockb
|
|
18
|
+
**/*.lock
|
|
19
|
+
**/*.toml
|
|
20
|
+
**/.nx/workspace-data/**
|
|
21
|
+
**/.nx/cache/**
|
|
22
|
+
**/.git/**
|
|
23
|
+
**/.docusaurus/**
|
|
24
|
+
**/dist/**
|
|
25
|
+
**/dotnet/**
|
|
26
|
+
**/node_modules/**
|
|
27
|
+
**/.next/**
|
|
28
|
+
**/.storm/**
|
|
29
|
+
**/tools/docker/**
|
|
30
|
+
**/__snapshots__/**
|
|
31
|
+
**/catalog-package/**
|
|
32
|
+
**/*.hbs
|
|
33
|
+
**/CODE_OF_CONDUCT.md
|
|
34
|
+
**/CONTRIBUTING.md
|
|
35
|
+
**/LICENSE
|
|
36
|
+
**/LICENSE.md
|
|
37
|
+
**/LICENSE.txt
|
|
38
|
+
**/typegen.d.ts
|
|
39
|
+
**/.DS_Store
|
|
40
|
+
**/.android
|
|
41
|
+
**/.cache
|
|
42
|
+
**/.changeset
|
|
43
|
+
**/.cspellcache
|
|
44
|
+
**/.docusaurus
|
|
45
|
+
**/.history
|
|
46
|
+
**/.idea
|
|
47
|
+
**/.next
|
|
48
|
+
**/.nuxt
|
|
49
|
+
**/.nx
|
|
50
|
+
**/.svelte-kit
|
|
51
|
+
**/.tamagui
|
|
52
|
+
**/.temp
|
|
53
|
+
**/.vercel
|
|
54
|
+
**/.vite-inspect
|
|
55
|
+
**/.vitepress/cache
|
|
56
|
+
**/.wrangler
|
|
57
|
+
**/.rolldown
|
|
58
|
+
**/.yarn
|
|
59
|
+
**/__generated__
|
|
60
|
+
**/__mocks__
|
|
61
|
+
**/__snapshots__
|
|
62
|
+
**/__test__
|
|
63
|
+
**/CHANGELOG*.md
|
|
64
|
+
**/CODEOWNERS
|
|
65
|
+
**/LICENSE*
|
|
66
|
+
**/PULL_REQUEST_TEMPLATE.md
|
|
67
|
+
**/SECURITY.md
|
|
68
|
+
**/Thumbs.db
|
|
69
|
+
**/*.min.*
|
|
70
|
+
**/auto-import?(s).d.ts
|
|
71
|
+
**/bench
|
|
72
|
+
**/bun.lockb
|
|
73
|
+
**/cargo.lock
|
|
74
|
+
**/components.d.ts
|
|
75
|
+
**/coverage
|
|
76
|
+
**/dist
|
|
77
|
+
**/fallback*.js
|
|
78
|
+
**/ios
|
|
79
|
+
**/jest.config.js
|
|
80
|
+
**/jest.config.json
|
|
81
|
+
**/jest.config.ts
|
|
82
|
+
**/jest.setup.js
|
|
83
|
+
**/jest.setup.json
|
|
84
|
+
**/jest.setup.ts
|
|
85
|
+
**/next-env.d.ts
|
|
86
|
+
**/node_modules
|
|
87
|
+
**/npm-lock.*
|
|
88
|
+
**/nx/**/?(.)schema.d.ts
|
|
89
|
+
**/nx/**/?(.)schema.json
|
|
90
|
+
**/nx/**/?(.)schema.md
|
|
91
|
+
**/nx/**/generators/**/files
|
|
92
|
+
**/output
|
|
93
|
+
**/package-lock.*
|
|
94
|
+
**/pnpm-lock.*
|
|
95
|
+
**/rollup.config.*.timestamp-*
|
|
96
|
+
**/service-worker.js
|
|
97
|
+
**/sw*.js
|
|
98
|
+
**/tamagui.css
|
|
99
|
+
**/temp
|
|
100
|
+
**/tmp
|
|
101
|
+
**/vite.config.*.timestamp-*
|
|
102
|
+
**/webpack.config.*.timestamp-*
|
|
103
|
+
**/workbox*.js
|
|
104
|
+
**/yarn.lock
|
|
105
|
+
**/yarn.lock.*
|
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 -->
|
|
@@ -46,6 +46,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
46
46
|
|
|
47
47
|
<!-- START doctoc -->
|
|
48
48
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
49
|
+
|
|
49
50
|
## Table of Contents
|
|
50
51
|
|
|
51
52
|
- [Storm Prettier Package](#storm-prettier-package)
|
|
@@ -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,22 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/prettier",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.59.1",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"monorepo",
|
|
8
|
+
"prettier",
|
|
9
|
+
"prettier-config",
|
|
10
|
+
"storm",
|
|
11
|
+
"storm-ops",
|
|
12
|
+
"sullivanpj"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://stormsoftware.com",
|
|
15
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
6
16
|
"repository": {
|
|
7
17
|
"type": "github",
|
|
8
18
|
"url": "https://github.com/storm-software/storm-ops",
|
|
9
19
|
"directory": "packages/prettier"
|
|
10
20
|
},
|
|
11
|
-
"
|
|
12
|
-
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
21
|
+
"license": "Apache-2.0",
|
|
13
22
|
"author": {
|
|
14
23
|
"name": "Storm Software",
|
|
15
24
|
"email": "contact@stormsoftware.com",
|
|
16
25
|
"url": "https://stormsoftware.com"
|
|
17
26
|
},
|
|
18
|
-
"
|
|
19
|
-
"private": false,
|
|
27
|
+
"type": "commonjs",
|
|
20
28
|
"exports": {
|
|
21
29
|
".": {
|
|
22
30
|
"import": "./index.js",
|
|
@@ -29,9 +37,11 @@
|
|
|
29
37
|
"default": "./index.js"
|
|
30
38
|
},
|
|
31
39
|
"./.prettierignore": "./.prettierignore",
|
|
40
|
+
"./.prettierignore-exclude-packagejson": "./.prettierignore-exclude-packagejson",
|
|
32
41
|
"./all.json": "./all.json",
|
|
33
42
|
"./base.json": "./base.json",
|
|
34
43
|
"./recommended.json": "./recommended.json",
|
|
44
|
+
"./exclude-packagejson.json": "./exclude-packagejson.json",
|
|
35
45
|
"./config.json": "./config.json",
|
|
36
46
|
"./jsdoc.json": "./jsdoc.json",
|
|
37
47
|
"./prisma.json": "./prisma.json",
|
|
@@ -41,6 +51,7 @@
|
|
|
41
51
|
},
|
|
42
52
|
"files": [
|
|
43
53
|
"./.prettierignore",
|
|
54
|
+
"./.prettierignore-exclude-packagejson",
|
|
44
55
|
"./all.json",
|
|
45
56
|
"./base.json",
|
|
46
57
|
"./config.json",
|
|
@@ -50,17 +61,25 @@
|
|
|
50
61
|
"./package.json",
|
|
51
62
|
"./prisma.json",
|
|
52
63
|
"./recommended.json",
|
|
64
|
+
"./exclude-packagejson.json",
|
|
53
65
|
"./solidity.json",
|
|
54
66
|
"./tailwindcss.json"
|
|
55
67
|
],
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"prettier",
|
|
59
|
-
"prettier-
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"prettier-plugin-jsdoc": "^1.8.0",
|
|
70
|
+
"prettier-plugin-organize-imports": "^4.3.0",
|
|
71
|
+
"prettier-plugin-packagejson": "^3.0.2",
|
|
72
|
+
"prettier-plugin-sh": "^0.15.0",
|
|
73
|
+
"prettier-plugin-toml": "^2.0.6"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@types/node": "^25.4.0",
|
|
77
|
+
"prettier": "^3.8.1",
|
|
78
|
+
"prettier-plugin-astro": "^0.14.1",
|
|
79
|
+
"prettier-plugin-prisma": "^5.0.0",
|
|
80
|
+
"prettier-plugin-solidity": "^1.4.3",
|
|
81
|
+
"prettier-plugin-tailwindcss": "^0.6.14"
|
|
82
|
+
},
|
|
64
83
|
"peerDependencies": {
|
|
65
84
|
"prettier": "^3.8.1",
|
|
66
85
|
"prettier-plugin-astro": "^0.14.1",
|
|
@@ -83,21 +102,6 @@
|
|
|
83
102
|
"prettier-plugin-tailwindcss": { "optional": true },
|
|
84
103
|
"prettier-plugin-toml": { "optional": false }
|
|
85
104
|
},
|
|
86
|
-
"dependencies": {
|
|
87
|
-
"prettier-plugin-jsdoc": "^1.8.0",
|
|
88
|
-
"prettier-plugin-organize-imports": "^4.3.0",
|
|
89
|
-
"prettier-plugin-packagejson": "^3.0.2",
|
|
90
|
-
"prettier-plugin-sh": "^0.15.0",
|
|
91
|
-
"prettier-plugin-toml": "^2.0.6"
|
|
92
|
-
},
|
|
93
|
-
"devDependencies": {
|
|
94
|
-
"@types/node": "^25.4.0",
|
|
95
|
-
"prettier": "^3.8.1",
|
|
96
|
-
"prettier-plugin-astro": "^0.14.1",
|
|
97
|
-
"prettier-plugin-prisma": "^5.0.0",
|
|
98
|
-
"prettier-plugin-solidity": "^1.4.3",
|
|
99
|
-
"prettier-plugin-tailwindcss": "^0.6.14"
|
|
100
|
-
},
|
|
101
105
|
"publishConfig": { "access": "public" },
|
|
102
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "32a1c767b09eb0b4cff78245f87d5439a158dc1d"
|
|
103
107
|
}
|