@enormora/eslint-config-typescript 0.0.15 → 0.0.16

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 +6 -6
  2. package/typescript.js +2 -3
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.6.0",
8
- "@typescript-eslint/parser": "8.6.0",
9
- "eslint-plugin-functional": "7.0.2",
10
- "eslint-plugin-perfectionist": "3.3.0"
7
+ "@typescript-eslint/eslint-plugin": "8.13.0",
8
+ "@typescript-eslint/parser": "8.13.0",
9
+ "eslint-plugin-functional": "7.1.0",
10
+ "eslint-plugin-perfectionist": "3.9.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.15"
17
+ "@enormora/eslint-config-base": "0.0.16"
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.15"
24
+ "version": "0.0.16"
25
25
  }
package/typescript.js CHANGED
@@ -346,6 +346,7 @@ export const typescriptConfig = {
346
346
  ],
347
347
  'functional/prefer-tacit': 'error',
348
348
  'functional/readonly-type': ['error', 'keyword'],
349
+ 'functional/no-class-inheritance': 'off',
349
350
  'functional/type-declaration-immutability': [
350
351
  'error',
351
352
  {
@@ -419,7 +420,6 @@ export const typescriptConfig = {
419
420
  }
420
421
  ],
421
422
  'perfectionist/sort-array-includes': 'off',
422
- 'perfectionist/sort-astro-attributes': 'off',
423
423
  'perfectionist/sort-classes': 'off',
424
424
  'perfectionist/sort-enums': 'off',
425
425
  'perfectionist/sort-exports': 'off',
@@ -431,9 +431,8 @@ export const typescriptConfig = {
431
431
  'perfectionist/sort-named-imports': 'off',
432
432
  'perfectionist/sort-object-types': 'off',
433
433
  'perfectionist/sort-objects': 'off',
434
- 'perfectionist/sort-svelte-attributes': 'off',
435
434
  'perfectionist/sort-switch-case': 'off',
436
435
  'perfectionist/sort-variable-declarations': 'off',
437
- 'perfectionist/sort-vue-attributes': 'off'
436
+ 'perfectionist/sort-sets': 'off'
438
437
  }
439
438
  };