@storm-software/eslint 0.151.2 → 0.152.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 +1 -1
- package/dist/types.d.ts +7 -0
- package/package.json +13 -25
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/types.d.ts
CHANGED
|
@@ -6312,6 +6312,11 @@ Backward pagination arguments
|
|
|
6312
6312
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-constraint
|
|
6313
6313
|
*/
|
|
6314
6314
|
'ts/no-unnecessary-type-constraint'?: Linter.RuleEntry<[]>
|
|
6315
|
+
/**
|
|
6316
|
+
* Disallow conversion idioms when they do not change the type or value of the expression
|
|
6317
|
+
* @see https://typescript-eslint.io/rules/no-unnecessary-type-conversion
|
|
6318
|
+
*/
|
|
6319
|
+
'ts/no-unnecessary-type-conversion'?: Linter.RuleEntry<[]>
|
|
6315
6320
|
/**
|
|
6316
6321
|
* Disallow type parameters that aren't used multiple times
|
|
6317
6322
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
|
|
@@ -15819,6 +15824,8 @@ type TsOnlyThrowError = []|[{
|
|
|
15819
15824
|
package: string
|
|
15820
15825
|
})[]
|
|
15821
15826
|
|
|
15827
|
+
allowRethrowing?: boolean
|
|
15828
|
+
|
|
15822
15829
|
allowThrowingAny?: boolean
|
|
15823
15830
|
|
|
15824
15831
|
allowThrowingUnknown?: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.152.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -40,10 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
"pnpm": ">=10.3.0"
|
|
46
|
-
},
|
|
43
|
+
"packageManager": "pnpm@10.3.0",
|
|
44
|
+
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
47
45
|
"main": "./dist/index.js",
|
|
48
46
|
"exports": {
|
|
49
47
|
"./package.json": "./package.json",
|
|
@@ -90,18 +88,12 @@
|
|
|
90
88
|
}
|
|
91
89
|
},
|
|
92
90
|
"./types": {
|
|
93
|
-
"import": {
|
|
94
|
-
"types": "./dist/types.d.ts",
|
|
95
|
-
"default": "./dist/types.js"
|
|
96
|
-
},
|
|
91
|
+
"import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
|
|
97
92
|
"require": {
|
|
98
93
|
"types": "./dist/types.d.cts",
|
|
99
94
|
"default": "./dist/types.cjs"
|
|
100
95
|
},
|
|
101
|
-
"default": {
|
|
102
|
-
"types": "./dist/types.d.ts",
|
|
103
|
-
"default": "./dist/types.js"
|
|
104
|
-
}
|
|
96
|
+
"default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
|
|
105
97
|
},
|
|
106
98
|
"./rules/*": {
|
|
107
99
|
"import": {
|
|
@@ -133,9 +125,7 @@
|
|
|
133
125
|
}
|
|
134
126
|
},
|
|
135
127
|
"types": "./dist/index.d.ts",
|
|
136
|
-
"files": [
|
|
137
|
-
"dist/**/*"
|
|
138
|
-
],
|
|
128
|
+
"files": ["dist/**/*"],
|
|
139
129
|
"keywords": [
|
|
140
130
|
"eslint",
|
|
141
131
|
"eslint-config",
|
|
@@ -166,16 +156,16 @@
|
|
|
166
156
|
"prettier-plugin-astro": "^0.14.0"
|
|
167
157
|
},
|
|
168
158
|
"dependencies": {
|
|
169
|
-
"@antfu/install-pkg": "^1.
|
|
159
|
+
"@antfu/install-pkg": "^1.1.0",
|
|
170
160
|
"@clack/prompts": "^0.10.1",
|
|
171
161
|
"@cspell/eslint-plugin": "^8.19.4",
|
|
172
162
|
"@eslint/eslintrc": "^3.3.1",
|
|
173
163
|
"@eslint/markdown": "^6.4.0",
|
|
174
164
|
"@nx/eslint-plugin": "20.8.0",
|
|
175
165
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
176
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
177
|
-
"@typescript-eslint/parser": "^8.
|
|
178
|
-
"@typescript-eslint/utils": "^8.
|
|
166
|
+
"@typescript-eslint/eslint-plugin": "^8.32.0",
|
|
167
|
+
"@typescript-eslint/parser": "^8.32.0",
|
|
168
|
+
"@typescript-eslint/utils": "^8.32.0",
|
|
179
169
|
"@vitest/eslint-plugin": "^1.1.44",
|
|
180
170
|
"chalk": "^4.1.2",
|
|
181
171
|
"defu": "6.1.4",
|
|
@@ -197,7 +187,7 @@
|
|
|
197
187
|
"eslint-plugin-paths": "^1.1.0",
|
|
198
188
|
"eslint-plugin-perfectionist": "^4.12.3",
|
|
199
189
|
"eslint-plugin-pnpm": "0.3.0",
|
|
200
|
-
"eslint-plugin-prettier": "^5.
|
|
190
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
201
191
|
"eslint-plugin-regexp": "^2.7.0",
|
|
202
192
|
"eslint-plugin-toml": "^0.12.0",
|
|
203
193
|
"eslint-plugin-tsdoc": "^0.4.0",
|
|
@@ -243,8 +233,6 @@
|
|
|
243
233
|
"tsx": "^4.19.2",
|
|
244
234
|
"typescript": "^5.8.3"
|
|
245
235
|
},
|
|
246
|
-
"publishConfig": {
|
|
247
|
-
"access": "public"
|
|
248
|
-
},
|
|
236
|
+
"publishConfig": { "access": "public" },
|
|
249
237
|
"sideEffects": false
|
|
250
|
-
}
|
|
238
|
+
}
|