@enormora/eslint-config-typescript 0.0.16 → 0.0.17

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/typescript.js +6 -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.13.0",
8
- "@typescript-eslint/parser": "8.13.0",
7
+ "@typescript-eslint/eslint-plugin": "8.15.0",
8
+ "@typescript-eslint/parser": "8.15.0",
9
9
  "eslint-plugin-functional": "7.1.0",
10
- "eslint-plugin-perfectionist": "3.9.1"
10
+ "eslint-plugin-perfectionist": "4.0.3"
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.16"
17
+ "@enormora/eslint-config-base": "0.0.17"
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.16"
24
+ "version": "0.0.17"
25
25
  }
package/typescript.js CHANGED
@@ -295,6 +295,8 @@ 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',
298
300
 
299
301
  'functional/functional-parameters': 'off',
300
302
  'functional/immutable-data': 'off',
@@ -433,6 +435,9 @@ export const typescriptConfig = {
433
435
  'perfectionist/sort-objects': 'off',
434
436
  'perfectionist/sort-switch-case': 'off',
435
437
  'perfectionist/sort-variable-declarations': 'off',
436
- 'perfectionist/sort-sets': 'off'
438
+ 'perfectionist/sort-sets': 'off',
439
+ 'perfectionist/sort-heritage-clauses': 'off',
440
+ 'perfectionist/sort-decorators': 'off',
441
+ 'perfectionist/sort-modules': 'off'
437
442
  }
438
443
  };