@egy186/eslint-config 2.4.0 → 2.6.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/dist/base.d.ts +1 -0
- package/dist/base.js +2 -1
- package/dist/browser.d.ts +1 -0
- package/dist/commonjs.d.ts +1 -0
- package/dist/typescript.d.ts +1 -0
- package/dist/typescript.js +1 -0
- package/package.json +14 -14
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/browser.d.ts
CHANGED
|
@@ -1705,6 +1705,7 @@ declare const config: {
|
|
|
1705
1705
|
readonly files: ["**/*.{js,jsx,mjs}", "**/*.{ts,tsx,mts}"];
|
|
1706
1706
|
readonly linterOptions: {
|
|
1707
1707
|
readonly reportUnusedDisableDirectives: "error";
|
|
1708
|
+
readonly reportUnusedInlineConfigs: "error";
|
|
1708
1709
|
};
|
|
1709
1710
|
readonly plugins: {
|
|
1710
1711
|
readonly '@stylistic': import("eslint").ESLint.Plugin;
|
package/dist/commonjs.d.ts
CHANGED
package/dist/typescript.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ declare const config: {
|
|
|
94
94
|
readonly '@typescript-eslint/no-meaningless-void-operator': "error";
|
|
95
95
|
readonly '@typescript-eslint/no-misused-new': "error";
|
|
96
96
|
readonly '@typescript-eslint/no-misused-promises': "error";
|
|
97
|
+
readonly '@typescript-eslint/no-misused-spread': "error";
|
|
97
98
|
readonly '@typescript-eslint/no-mixed-enums': "warn";
|
|
98
99
|
readonly '@typescript-eslint/no-namespace': "error";
|
|
99
100
|
readonly '@typescript-eslint/no-non-null-asserted-nullish-coalescing': "error";
|
package/dist/typescript.js
CHANGED
|
@@ -97,6 +97,7 @@ const config = {
|
|
|
97
97
|
'@typescript-eslint/no-meaningless-void-operator': 'error',
|
|
98
98
|
'@typescript-eslint/no-misused-new': 'error',
|
|
99
99
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
100
|
+
'@typescript-eslint/no-misused-spread': 'error',
|
|
100
101
|
'@typescript-eslint/no-mixed-enums': 'warn',
|
|
101
102
|
'@typescript-eslint/no-namespace': 'error',
|
|
102
103
|
'@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egy186/eslint-config",
|
|
3
3
|
"description": "Eslint shareable config",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.6.0",
|
|
5
5
|
"author": "egy186",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/egy186/eslint-config/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@stylistic/eslint-plugin": "~2.
|
|
10
|
+
"@stylistic/eslint-plugin": "~2.13.0",
|
|
11
11
|
"eslint-plugin-import": "~2.31.0",
|
|
12
|
-
"eslint-plugin-jsdoc": "~50.6.
|
|
12
|
+
"eslint-plugin-jsdoc": "~50.6.2",
|
|
13
13
|
"eslint-plugin-n": "~17.15.1",
|
|
14
14
|
"globals": "^15.14.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@eslint-stylistic/metadata": "~2.
|
|
18
|
-
"@eslint/js": "~9.
|
|
19
|
-
"@types/node": "^22.10.
|
|
20
|
-
"@vitest/eslint-plugin": "~1.1.
|
|
21
|
-
"eslint": "~9.
|
|
17
|
+
"@eslint-stylistic/metadata": "~2.13.0",
|
|
18
|
+
"@eslint/js": "~9.19.0",
|
|
19
|
+
"@types/node": "^22.10.10",
|
|
20
|
+
"@vitest/eslint-plugin": "~1.1.25",
|
|
21
|
+
"eslint": "~9.19.0",
|
|
22
22
|
"eslint-import-resolver-typescript": "~3.7.0",
|
|
23
|
-
"eslint-plugin-jest": "~28.
|
|
24
|
-
"eslint-plugin-react": "~7.37.
|
|
23
|
+
"eslint-plugin-jest": "~28.11.0",
|
|
24
|
+
"eslint-plugin-react": "~7.37.4",
|
|
25
25
|
"eslint-plugin-react-hooks": "~5.1.0",
|
|
26
26
|
"husky": "^9.1.7",
|
|
27
27
|
"jiti": "^2.4.2",
|
|
28
|
-
"typescript": "~5.7.
|
|
29
|
-
"typescript-eslint": "~8.
|
|
28
|
+
"typescript": "~5.7.3",
|
|
29
|
+
"typescript-eslint": "~8.21.0"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18.18.0"
|
|
@@ -65,13 +65,13 @@
|
|
|
65
65
|
"main": "./dist/index.js",
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"@vitest/eslint-plugin": "^1.1.10",
|
|
68
|
-
"eslint": "^9.
|
|
68
|
+
"eslint": "^9.19.0",
|
|
69
69
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
70
70
|
"eslint-plugin-jest": "^28.8.3",
|
|
71
71
|
"eslint-plugin-react": "^7.36.1",
|
|
72
72
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
73
73
|
"typescript": "^5.0.4",
|
|
74
|
-
"typescript-eslint": "^8.
|
|
74
|
+
"typescript-eslint": "^8.20.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependenciesMeta": {
|
|
77
77
|
"@vitest/eslint-plugin": {
|