@nfq/eslint-config 2.2.9 → 2.2.11
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/CHANGELOG.md +20 -0
- package/config/globals.js +1 -0
- package/index.js +1 -1
- package/package.json +20 -19
- package/pnpm-lock.yaml +737 -484
- package/rules/errors.js +0 -1
- package/rules/es6.js +0 -1
- package/rules/react.js +1 -1
- package/rules/style.js +17 -13
- package/rules/typescript.js +7 -1
- package/rules/variables.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.2.11](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.10...v2.2.11) (2023-03-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **Rules:** fix some rules ([#36](https://github.com/nfqde/eslint-config-nfq/issues/36)) ([5c0a5f1](https://github.com/nfqde/eslint-config-nfq/commit/5c0a5f1a76ae7020d02abb50ef7862af42fb22e8))
|
|
11
|
+
|
|
12
|
+
### [2.2.10](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.9...v2.2.10) (2023-03-02)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **es6:** Remove depricated rule: prefer-reflect ([#31](https://github.com/nfqde/eslint-config-nfq/issues/31)) ([d582b4f](https://github.com/nfqde/eslint-config-nfq/commit/d582b4fb104e4921df9c3e8c98858aba7b43926d))
|
|
18
|
+
* **jsdoc:** Remove depricated jsdoc rules ([#29](https://github.com/nfqde/eslint-config-nfq/issues/29)) ([1d4ee15](https://github.com/nfqde/eslint-config-nfq/commit/1d4ee15abc882654a60055821483cac386462100))
|
|
19
|
+
* **React:** Repalace depricated rule with sort-default-props ([#35](https://github.com/nfqde/eslint-config-nfq/issues/35)) ([1348de8](https://github.com/nfqde/eslint-config-nfq/commit/1348de8a19e40a7a7cf5e05da5dac2097754c4b3))
|
|
20
|
+
* **Style:** Remove depricated and already replaced no-spaced-func ([#33](https://github.com/nfqde/eslint-config-nfq/issues/33)) ([266b936](https://github.com/nfqde/eslint-config-nfq/commit/266b9364416c138a60451d7021e95104eef6ae69))
|
|
21
|
+
* **Style:** Replace depricated line between rules ([#34](https://github.com/nfqde/eslint-config-nfq/issues/34)) ([581a48d](https://github.com/nfqde/eslint-config-nfq/commit/581a48d8582dd7fc8a9c40f9466424213377047a))
|
|
22
|
+
* **Style:** Replace depricated rule id-blacklist with id-denylist ([#32](https://github.com/nfqde/eslint-config-nfq/issues/32)) ([b804fe6](https://github.com/nfqde/eslint-config-nfq/commit/b804fe6c5d5ce6d28a916329dc516fbf4519353c))
|
|
23
|
+
* **Variables:** Remove depricated rule: no-catch-shadow ([#30](https://github.com/nfqde/eslint-config-nfq/issues/30)) ([ed9ac8c](https://github.com/nfqde/eslint-config-nfq/commit/ed9ac8c74ceeba62adb32dea18b60e8a40f23c0e))
|
|
24
|
+
|
|
5
25
|
### [2.2.9](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.8...v2.2.9) (2022-11-15)
|
|
6
26
|
|
|
7
27
|
|
package/config/globals.js
CHANGED
package/index.js
CHANGED
|
@@ -16,7 +16,7 @@ module.exports = {
|
|
|
16
16
|
{
|
|
17
17
|
files: ['**/*.{ts,cts,mts,tsx}'],
|
|
18
18
|
parser: '@typescript-eslint/parser',
|
|
19
|
-
parserOptions: {project: '
|
|
19
|
+
parserOptions: {project: '**/tsconfig*.json'},
|
|
20
20
|
plugins: ['@typescript-eslint'],
|
|
21
21
|
rules: typescript.rules
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nfq/eslint-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.11",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">= 12.0.0"
|
|
6
6
|
},
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"config"
|
|
18
18
|
],
|
|
19
19
|
"peerDependencies": {
|
|
20
|
+
"@babel/core": ">= 7",
|
|
20
21
|
"@babel/eslint-parser": ">= 7",
|
|
21
22
|
"@nfq/eslint-plugin": ">= 0.6.0",
|
|
22
23
|
"@typescript-eslint/eslint-plugin": ">= 5",
|
|
@@ -26,12 +27,12 @@
|
|
|
26
27
|
"eslint-plugin-array-func": ">= 3",
|
|
27
28
|
"eslint-plugin-better-styled-components": ">= 1",
|
|
28
29
|
"eslint-plugin-import": ">= 2",
|
|
29
|
-
"eslint-plugin-jsdoc": ">=
|
|
30
|
+
"eslint-plugin-jsdoc": ">= 40",
|
|
30
31
|
"eslint-plugin-jsx-a11y": ">= 6",
|
|
31
|
-
"eslint-plugin-no-unsanitized": ">=
|
|
32
|
+
"eslint-plugin-no-unsanitized": ">= 4",
|
|
32
33
|
"eslint-plugin-node": ">= 11",
|
|
33
34
|
"eslint-plugin-perf-standard": ">= 1",
|
|
34
|
-
"eslint-plugin-promise": ">=
|
|
35
|
+
"eslint-plugin-promise": ">= 6",
|
|
35
36
|
"eslint-plugin-react": ">= 7",
|
|
36
37
|
"eslint-plugin-react-hooks": ">= 4",
|
|
37
38
|
"eslint-plugin-react-hooks-ssr": ">= 0.1.5",
|
|
@@ -43,28 +44,28 @@
|
|
|
43
44
|
"confusing-browser-globals": "^1.0.11"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
|
-
"@babel/core": "^7.
|
|
47
|
-
"@babel/eslint-parser": "^7.
|
|
47
|
+
"@babel/core": "^7.21.0",
|
|
48
|
+
"@babel/eslint-parser": "^7.19.1",
|
|
48
49
|
"@nfq/eslint-plugin": "^0.6.0",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
-
"eslint": "^8.
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
51
|
+
"@typescript-eslint/parser": "^5.54.0",
|
|
52
|
+
"eslint": "^8.35.0",
|
|
52
53
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
53
|
-
"eslint-plugin-array-func": "^3.1.
|
|
54
|
+
"eslint-plugin-array-func": "^3.1.8",
|
|
54
55
|
"eslint-plugin-better-styled-components": "^1.1.2",
|
|
55
|
-
"eslint-plugin-import": "^2.
|
|
56
|
-
"eslint-plugin-jsdoc": "^
|
|
57
|
-
"eslint-plugin-jsx-a11y": "^6.
|
|
58
|
-
"eslint-plugin-no-unsanitized": "^4.0.
|
|
56
|
+
"eslint-plugin-import": "^2.27.5",
|
|
57
|
+
"eslint-plugin-jsdoc": "^40.0.1",
|
|
58
|
+
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
59
|
+
"eslint-plugin-no-unsanitized": "^4.0.2",
|
|
59
60
|
"eslint-plugin-node": "^11.1.0",
|
|
60
61
|
"eslint-plugin-perf-standard": "^1.0.3",
|
|
61
|
-
"eslint-plugin-promise": "^6.
|
|
62
|
-
"eslint-plugin-react": "^7.
|
|
62
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
63
|
+
"eslint-plugin-react": "^7.32.2",
|
|
63
64
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
64
65
|
"eslint-plugin-react-hooks-ssr": "^0.1.5",
|
|
65
|
-
"eslint-plugin-redos": "
|
|
66
|
-
"eslint-plugin-security": "^1.
|
|
67
|
-
"eslint-plugin-sort-destructure-keys": "^1.
|
|
66
|
+
"eslint-plugin-redos": "4.4.5",
|
|
67
|
+
"eslint-plugin-security": "^1.7.1",
|
|
68
|
+
"eslint-plugin-sort-destructure-keys": "^1.5.0"
|
|
68
69
|
},
|
|
69
70
|
"author": ".NFQ | Christoph Kruppe",
|
|
70
71
|
"license": "ISC"
|