@enormora/eslint-config-typescript 0.0.20 → 0.0.22
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/package.json +6 -6
- package/typescript.js +1 -1
package/package.json
CHANGED
|
@@ -4,22 +4,22 @@
|
|
|
4
4
|
"Christian Rackerseder <github@echooff.de>"
|
|
5
5
|
],
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
8
|
-
"@typescript-eslint/parser": "8.
|
|
9
|
-
"eslint-plugin-functional": "9.0.
|
|
10
|
-
"eslint-plugin-perfectionist": "4.
|
|
7
|
+
"@typescript-eslint/eslint-plugin": "8.39.0",
|
|
8
|
+
"@typescript-eslint/parser": "8.39.0",
|
|
9
|
+
"eslint-plugin-functional": "9.0.2",
|
|
10
|
+
"eslint-plugin-perfectionist": "4.15.0"
|
|
11
11
|
},
|
|
12
12
|
"description": "Enormora’s ESLint typescript configuration",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "typescript.js",
|
|
15
15
|
"name": "@enormora/eslint-config-typescript",
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@enormora/eslint-config-base": "0.0.
|
|
17
|
+
"@enormora/eslint-config-base": "0.0.21"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
21
|
"url": "git://github.com/enormora/eslint-config.git"
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
|
-
"version": "0.0.
|
|
24
|
+
"version": "0.0.22"
|
|
25
25
|
}
|
package/typescript.js
CHANGED
|
@@ -248,7 +248,6 @@ export const typescriptConfig = {
|
|
|
248
248
|
'@typescript-eslint/restrict-template-expressions': ['off'],
|
|
249
249
|
'@typescript-eslint/return-await': ['off'],
|
|
250
250
|
'@typescript-eslint/switch-exhaustiveness-check': ['error'],
|
|
251
|
-
'@typescript-eslint/typedef': ['off'],
|
|
252
251
|
'@typescript-eslint/unbound-method': ['off'],
|
|
253
252
|
'@typescript-eslint/ban-tslint-comment': ['off'],
|
|
254
253
|
'@typescript-eslint/no-confusing-non-null-assertion': ['error'],
|
|
@@ -290,6 +289,7 @@ export const typescriptConfig = {
|
|
|
290
289
|
'@typescript-eslint/class-methods-use-this': 'error',
|
|
291
290
|
'@typescript-eslint/no-array-delete': 'error',
|
|
292
291
|
'@typescript-eslint/no-unnecessary-template-expression': 'error',
|
|
292
|
+
'@typescript-eslint/no-unnecessary-type-conversion': 'error',
|
|
293
293
|
...configureWrappedCoreRule('prefer-promise-reject-errors'),
|
|
294
294
|
'@typescript-eslint/prefer-find': 'error',
|
|
295
295
|
'@typescript-eslint/no-deprecated': 'off',
|