@perfective/eslint-config 0.23.3 → 0.23.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perfective/eslint-config",
3
- "version": "0.23.3",
3
+ "version": "0.23.4",
4
4
  "description": "ESLint shareable rules configuration",
5
5
  "keywords": ["code quality", "code standard", "code style", "eslint", "eslint config", "lint", "perfective", "tslint", "tslint config", "typescript"],
6
6
  "author": "Andrey Mikheychik <a.mikheychik@gmail.com>",
@@ -12,9 +12,9 @@
12
12
  "license": "MIT",
13
13
  "peerDependencies": {
14
14
  "@babel/eslint-parser": "^7.23.3",
15
- "@typescript-eslint/eslint-plugin": "^6.15.0",
16
- "@typescript-eslint/eslint-plugin-tslint": "^6.15.0",
17
- "@typescript-eslint/parser": "^6.15.0",
15
+ "@typescript-eslint/eslint-plugin": "^6.17.0",
16
+ "@typescript-eslint/eslint-plugin-tslint": "^6.17.0",
17
+ "@typescript-eslint/parser": "^6.17.0",
18
18
  "eslint": "^8.56.0",
19
19
  "eslint-import-resolver-typescript": "^3.6.1",
20
20
  "eslint-plugin-array-func": "^4.0.0",
@@ -22,10 +22,10 @@
22
22
  "eslint-plugin-deprecation": "^2.0.0",
23
23
  "eslint-plugin-eslint-comments": "^3.2.0",
24
24
  "eslint-plugin-import": "^2.29.1",
25
- "eslint-plugin-jest": "^27.6.0",
25
+ "eslint-plugin-jest": "^27.6.1",
26
26
  "eslint-plugin-jest-dom": "^5.1.0",
27
27
  "eslint-plugin-jest-formatting": "^3.1.0",
28
- "eslint-plugin-jsdoc": "^46.9.1",
28
+ "eslint-plugin-jsdoc": "^47.0.2",
29
29
  "eslint-plugin-node": "^11.1.0",
30
30
  "eslint-plugin-prefer-arrow": "^1.2.3",
31
31
  "eslint-plugin-promise": "^6.1.1",
@@ -25,7 +25,7 @@ module.exports = {
25
25
  'no-dupe-else-if': 'error',
26
26
  'no-dupe-keys': 'error',
27
27
  'no-duplicate-case': 'error',
28
- 'no-duplicate-imports': ['error', {
28
+ 'no-duplicate-imports': ['off', {
29
29
  includeExports: true,
30
30
  }],
31
31
  'no-empty-character-class': 'error',
@@ -83,7 +83,6 @@ module.exports = {
83
83
  '@typescript-eslint/no-array-constructor': 'warn',
84
84
  'no-dupe-class-members': 'off',
85
85
  '@typescript-eslint/no-dupe-class-members': 'error',
86
- 'no-duplicate-imports': 'off',
87
86
  'no-empty-function': 'off',
88
87
  '@typescript-eslint/no-empty-function': ['error', {
89
88
  allow: ['protected-constructors', 'private-constructors'],
@@ -269,6 +269,7 @@ module.exports = {
269
269
  allowAny: false,
270
270
  }],
271
271
  '@typescript-eslint/switch-exhaustiveness-check': ['error', {
272
+ allowDefaultCaseForExhaustiveSwitch: false,
272
273
  requireDefaultForNonUnion: true,
273
274
  }],
274
275
  '@typescript-eslint/triple-slash-reference': ['error', {