@nfq/eslint-config 2.2.8 → 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 CHANGED
@@ -2,6 +2,33 @@
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
+
25
+ ### [2.2.9](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.8...v2.2.9) (2022-11-15)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **Imports:** fix wrong boolean config ([#28](https://github.com/nfqde/eslint-config-nfq/issues/28)) ([ae2159f](https://github.com/nfqde/eslint-config-nfq/commit/ae2159f0e5220dd6d082d27be1d140799c2e13b5))
31
+
5
32
  ### [2.2.8](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.7...v2.2.8) (2022-11-15)
6
33
 
7
34
 
package/config/globals.js CHANGED
@@ -11,6 +11,7 @@ module.exports = {
11
11
  describe: false,
12
12
  expect: false,
13
13
  it: false,
14
+ JQuery: false,
14
15
  JSX: false,
15
16
  NodeJs: false
16
17
  };
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: './tsconfig.json'},
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.8",
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": ">= 39",
30
+ "eslint-plugin-jsdoc": ">= 40",
30
31
  "eslint-plugin-jsx-a11y": ">= 6",
31
- "eslint-plugin-no-unsanitized": ">= 3",
32
+ "eslint-plugin-no-unsanitized": ">= 4",
32
33
  "eslint-plugin-node": ">= 11",
33
34
  "eslint-plugin-perf-standard": ">= 1",
34
- "eslint-plugin-promise": ">= 5",
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.18.9",
47
- "@babel/eslint-parser": "^7.18.9",
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.30.7",
50
- "@typescript-eslint/parser": "^5.30.7",
51
- "eslint": "^8.20.0",
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.7",
54
+ "eslint-plugin-array-func": "^3.1.8",
54
55
  "eslint-plugin-better-styled-components": "^1.1.2",
55
- "eslint-plugin-import": "^2.26.0",
56
- "eslint-plugin-jsdoc": "^39.3.3",
57
- "eslint-plugin-jsx-a11y": "^6.6.0",
58
- "eslint-plugin-no-unsanitized": "^4.0.1",
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.0.0",
62
- "eslint-plugin-react": "^7.30.1",
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": "^4.4.1",
66
- "eslint-plugin-security": "^1.5.0",
67
- "eslint-plugin-sort-destructure-keys": "^1.4.0"
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"