@enormora/eslint-config-typescript 0.0.14 → 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 -4
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.3.0",
8
- "@typescript-eslint/parser": "8.3.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.14"
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.14"
24
+ "version": "0.0.16"
25
25
  }
package/typescript.js CHANGED
@@ -126,7 +126,6 @@ export const typescriptConfig = {
126
126
  '@typescript-eslint/member-ordering': 'error',
127
127
  ...configureWrappedCoreRule('no-array-constructor'),
128
128
  ...configureWrappedCoreRule('no-empty-function'),
129
- '@typescript-eslint/no-empty-function': 'off',
130
129
  '@typescript-eslint/no-explicit-any': 'error',
131
130
  '@typescript-eslint/no-extraneous-class': 'error',
132
131
  '@typescript-eslint/no-for-in-array': 'error',
@@ -347,6 +346,7 @@ export const typescriptConfig = {
347
346
  ],
348
347
  'functional/prefer-tacit': 'error',
349
348
  'functional/readonly-type': ['error', 'keyword'],
349
+ 'functional/no-class-inheritance': 'off',
350
350
  'functional/type-declaration-immutability': [
351
351
  'error',
352
352
  {
@@ -420,7 +420,6 @@ export const typescriptConfig = {
420
420
  }
421
421
  ],
422
422
  'perfectionist/sort-array-includes': 'off',
423
- 'perfectionist/sort-astro-attributes': 'off',
424
423
  'perfectionist/sort-classes': 'off',
425
424
  'perfectionist/sort-enums': 'off',
426
425
  'perfectionist/sort-exports': 'off',
@@ -432,9 +431,8 @@ export const typescriptConfig = {
432
431
  'perfectionist/sort-named-imports': 'off',
433
432
  'perfectionist/sort-object-types': 'off',
434
433
  'perfectionist/sort-objects': 'off',
435
- 'perfectionist/sort-svelte-attributes': 'off',
436
434
  'perfectionist/sort-switch-case': 'off',
437
435
  'perfectionist/sort-variable-declarations': 'off',
438
- 'perfectionist/sort-vue-attributes': 'off'
436
+ 'perfectionist/sort-sets': 'off'
439
437
  }
440
438
  };