@10stars/config 13.0.4 → 13.0.5
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/eslint.config.ts +7 -3
- package/package.json +1 -1
package/eslint.config.ts
CHANGED
|
@@ -109,6 +109,7 @@ const addPluginImport = () =>
|
|
|
109
109
|
"import/order": 0,
|
|
110
110
|
"import/no-unresolved": 0,
|
|
111
111
|
"import/no-duplicates": 1,
|
|
112
|
+
"import/no-named-as-default": 0,
|
|
112
113
|
"import/no-nodejs-modules": [
|
|
113
114
|
2,
|
|
114
115
|
{
|
|
@@ -191,15 +192,20 @@ export default tseslint.config(
|
|
|
191
192
|
"@typescript-eslint/prefer-nullish-coalescing": 0,
|
|
192
193
|
"@typescript-eslint/consistent-indexed-object-style": 0,
|
|
193
194
|
"@typescript-eslint/no-throw-literal": 0,
|
|
195
|
+
"@typescript-eslint/no-unnecessary-type-parameters": 0,
|
|
194
196
|
"@typescript-eslint/no-unnecessary-condition": 0,
|
|
197
|
+
"@typescript-eslint/no-unnecessary-type-arguments": 1,
|
|
198
|
+
"@typescript-eslint/no-unnecessary-qualifier": 1,
|
|
195
199
|
"@typescript-eslint/no-confusing-void-expression": 0,
|
|
196
200
|
"@typescript-eslint/no-invalid-void-type": 0,
|
|
197
201
|
"@typescript-eslint/no-dynamic-delete": 0,
|
|
198
202
|
"@typescript-eslint/no-empty-interface": 0,
|
|
199
|
-
"@typescript-eslint/no-
|
|
203
|
+
"@typescript-eslint/no-empty-object-type": 0,
|
|
200
204
|
"@typescript-eslint/no-empty-function": 0,
|
|
205
|
+
"@typescript-eslint/no-unused-vars": 0,
|
|
201
206
|
"@typescript-eslint/no-explicit-any": 0,
|
|
202
207
|
"@typescript-eslint/ban-types": 0,
|
|
208
|
+
"@typescript-eslint/ban-ts-comment": 0,
|
|
203
209
|
"@typescript-eslint/only-throw-error": 0,
|
|
204
210
|
"@typescript-eslint/use-unknown-in-catch-callback-variable": 0,
|
|
205
211
|
"@typescript-eslint/no-unsafe-call": 0,
|
|
@@ -241,7 +247,6 @@ export default tseslint.config(
|
|
|
241
247
|
},
|
|
242
248
|
],
|
|
243
249
|
|
|
244
|
-
"@typescript-eslint/no-unnecessary-type-arguments": 1,
|
|
245
250
|
"@typescript-eslint/unified-signatures": 1,
|
|
246
251
|
"@typescript-eslint/prefer-string-starts-ends-with": 1,
|
|
247
252
|
"@typescript-eslint/prefer-regexp-exec": 1,
|
|
@@ -263,7 +268,6 @@ export default tseslint.config(
|
|
|
263
268
|
},
|
|
264
269
|
],
|
|
265
270
|
|
|
266
|
-
"@typescript-eslint/no-unnecessary-qualifier": 1,
|
|
267
271
|
"@typescript-eslint/no-extraneous-class": 1,
|
|
268
272
|
"@typescript-eslint/explicit-member-accessibility": 1,
|
|
269
273
|
|