@perfective/eslint-config 0.20.0-beta → 0.20.0

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.20.0-beta",
3
+ "version": "0.20.0",
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.19.1",
15
- "@typescript-eslint/eslint-plugin": "^5.52.0",
16
- "@typescript-eslint/eslint-plugin-tslint": "^5.52.0",
17
- "@typescript-eslint/parser": "^5.52.0",
15
+ "@typescript-eslint/eslint-plugin": "^5.53.0",
16
+ "@typescript-eslint/eslint-plugin-tslint": "^5.53.0",
17
+ "@typescript-eslint/parser": "^5.53.0",
18
18
  "eslint": "^8.34.0",
19
19
  "eslint-import-resolver-typescript": "^3.5.3",
20
20
  "eslint-plugin-array-func": "^3.1.8",
@@ -32,7 +32,7 @@
32
32
  "eslint-plugin-rxjs": "^5.0.2",
33
33
  "eslint-plugin-simple-import-sort": "^10.0.0",
34
34
  "eslint-plugin-sonarjs": "^0.18.0",
35
- "eslint-plugin-testing-library": "^5.10.1",
35
+ "eslint-plugin-testing-library": "^5.10.2",
36
36
  "eslint-plugin-unicorn": "^45.0.2",
37
37
  "tslint": "^6.1.3"
38
38
  },
@@ -81,7 +81,7 @@ module.exports = {
81
81
  'jsdoc/no-undefined-types': 'error',
82
82
  'jsdoc/require-asterisk-prefix': ['error', 'always'],
83
83
  'jsdoc/require-description': ['error', {
84
- exemptedBy: ['inheritdoc', 'package', 'private', 'see'],
84
+ exemptedBy: ['inheritdoc', 'package', 'private', 'see', 'deprecated'],
85
85
  }],
86
86
  'jsdoc/require-description-complete-sentence': 'error',
87
87
  'jsdoc/require-example': 'off',
@@ -158,6 +158,7 @@ module.exports = {
158
158
  checksConditionals: true,
159
159
  checksVoidReturn: true,
160
160
  }],
161
+ '@typescript-eslint/no-mixed-enums': 'error',
161
162
  '@typescript-eslint/no-namespace': 'error',
162
163
  '@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
163
164
  '@typescript-eslint/no-non-null-asserted-optional-chain': 'error',