@enormora/eslint-config-typescript 0.0.16 → 0.0.18
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 +7 -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": "
|
|
10
|
-
"eslint-plugin-perfectionist": "
|
|
7
|
+
"@typescript-eslint/eslint-plugin": "8.26.1",
|
|
8
|
+
"@typescript-eslint/parser": "8.26.1",
|
|
9
|
+
"eslint-plugin-functional": "9.0.1",
|
|
10
|
+
"eslint-plugin-perfectionist": "4.10.1"
|
|
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.18"
|
|
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.18"
|
|
25
25
|
}
|
package/typescript.js
CHANGED
|
@@ -295,6 +295,9 @@ export const typescriptConfig = {
|
|
|
295
295
|
'@typescript-eslint/no-deprecated': 'off',
|
|
296
296
|
'@typescript-eslint/no-unnecessary-parameter-property-assignment': 'error',
|
|
297
297
|
'@typescript-eslint/no-unnecessary-type-parameters': 'error',
|
|
298
|
+
'@typescript-eslint/no-unsafe-type-assertion': 'error',
|
|
299
|
+
'@typescript-eslint/related-getter-setter-pairs': 'off',
|
|
300
|
+
'@typescript-eslint/no-misused-spread': 'error',
|
|
298
301
|
|
|
299
302
|
'functional/functional-parameters': 'off',
|
|
300
303
|
'functional/immutable-data': 'off',
|
|
@@ -433,6 +436,9 @@ export const typescriptConfig = {
|
|
|
433
436
|
'perfectionist/sort-objects': 'off',
|
|
434
437
|
'perfectionist/sort-switch-case': 'off',
|
|
435
438
|
'perfectionist/sort-variable-declarations': 'off',
|
|
436
|
-
'perfectionist/sort-sets': 'off'
|
|
439
|
+
'perfectionist/sort-sets': 'off',
|
|
440
|
+
'perfectionist/sort-heritage-clauses': 'off',
|
|
441
|
+
'perfectionist/sort-decorators': 'off',
|
|
442
|
+
'perfectionist/sort-modules': 'off'
|
|
437
443
|
}
|
|
438
444
|
};
|