@ethang/eslint-config 17.0.11 → 17.0.13
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/README.md +1 -1
- package/eslint.config.js +3 -5
- package/package.json +14 -14
package/README.md
CHANGED
package/eslint.config.js
CHANGED
|
@@ -9,7 +9,7 @@ import reactHooks from "eslint-plugin-react-hooks";
|
|
|
9
9
|
import unicorn from "eslint-plugin-unicorn";
|
|
10
10
|
import tseslint from "typescript-eslint";
|
|
11
11
|
import sonar from "eslint-plugin-sonarjs";
|
|
12
|
-
import
|
|
12
|
+
import tanstack from "@tanstack/eslint-plugin-query";
|
|
13
13
|
import perfectionist from "eslint-plugin-perfectionist";
|
|
14
14
|
|
|
15
15
|
const languageOptions = {
|
|
@@ -197,9 +197,7 @@ export default tseslint.config(
|
|
|
197
197
|
perfectionist,
|
|
198
198
|
sonar,
|
|
199
199
|
unicorn,
|
|
200
|
-
"@tanstack/query":
|
|
201
|
-
rules: tanstackRules,
|
|
202
|
-
},
|
|
200
|
+
"@tanstack/query": tanstack,
|
|
203
201
|
},
|
|
204
202
|
rules: {
|
|
205
203
|
"accessor-pairs": "error",
|
|
@@ -382,7 +380,7 @@ export default tseslint.config(
|
|
|
382
380
|
"no-unused-private-class-members": "error",
|
|
383
381
|
"no-unused-vars": "off", // Handled by tseslint
|
|
384
382
|
"no-use-before-define": "off",
|
|
385
|
-
"no-useless-assignment": "
|
|
383
|
+
"no-useless-assignment": "off", // Currently causing version errors
|
|
386
384
|
"no-useless-backreference": "error",
|
|
387
385
|
"no-useless-call": "error",
|
|
388
386
|
"no-useless-catch": "error",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethang/eslint-config",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.13",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "git+https://github.com/eglove/eslint-config-ethang.git"
|
|
6
6
|
},
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"author": "Ethan Glover",
|
|
17
17
|
"license": "ISC",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@eslint/js": "^9.
|
|
20
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
21
|
-
"@typescript-eslint/parser": "^7.
|
|
22
|
-
"eslint": "^9.
|
|
19
|
+
"@eslint/js": "^9.6.0",
|
|
20
|
+
"@tanstack/eslint-plugin-query": "^5.50.1",
|
|
21
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
22
|
+
"eslint": "^9.6.0",
|
|
23
23
|
"eslint-config-prettier": "^9.1.0",
|
|
24
24
|
"eslint-plugin-astro": "^1.2.2",
|
|
25
25
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"eslint-plugin-sonarjs": "^1.0.3",
|
|
32
32
|
"eslint-plugin-unicorn": "^54.0.0",
|
|
33
33
|
"prettier": "^3.3.2",
|
|
34
|
-
"typescript": "^5.5.
|
|
35
|
-
"typescript-eslint": "^7.
|
|
34
|
+
"typescript": "^5.5.3",
|
|
35
|
+
"typescript-eslint": "^7.15.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@eslint/js": "^9.
|
|
39
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
40
|
-
"@typescript-eslint/parser": "^7.
|
|
41
|
-
"eslint": "^9.
|
|
38
|
+
"@eslint/js": "^9.6.0",
|
|
39
|
+
"@tanstack/eslint-plugin-query": "^5.50.1",
|
|
40
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
41
|
+
"eslint": "^9.6.0",
|
|
42
42
|
"eslint-config-prettier": "^9.1.0",
|
|
43
43
|
"eslint-plugin-astro": "^1.2.2",
|
|
44
44
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"eslint-plugin-sonarjs": "^1.0.3",
|
|
51
51
|
"eslint-plugin-unicorn": "^54.0.0",
|
|
52
52
|
"prettier": "^3.3.2",
|
|
53
|
-
"typescript": "^5.5.
|
|
54
|
-
"typescript-eslint": "^7.
|
|
53
|
+
"typescript": "^5.5.3",
|
|
54
|
+
"typescript-eslint": "^7.15.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@ethang/project-builder": "^1.1.
|
|
57
|
+
"@ethang/project-builder": "^1.1.41",
|
|
58
58
|
"@tsconfig/node-lts": "^20.1.3",
|
|
59
59
|
"@tsconfig/strictest": "^2.0.5"
|
|
60
60
|
}
|