@paratco/eslint-config 2.2.5 → 2.2.6
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/configs/base.d.ts +1 -1
- package/dist/configs/node.d.ts +1 -1
- package/dist/configs/react.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +7 -7
package/dist/configs/base.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: ({
|
|
2
2
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
3
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
3
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
4
4
|
files: string[];
|
|
5
5
|
rules: {
|
|
6
6
|
readonly eqeqeq: readonly ["warn"];
|
package/dist/configs/node.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: ({
|
|
2
2
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
3
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
3
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
4
4
|
files: string[];
|
|
5
5
|
rules: {
|
|
6
6
|
readonly eqeqeq: readonly ["warn"];
|
package/dist/configs/react.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import reactPlugin from "eslint-plugin-react";
|
|
|
2
2
|
import reactHooksPlugin from "eslint-plugin-react-hooks";
|
|
3
3
|
declare const _default: ({
|
|
4
4
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
5
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
5
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
6
6
|
files: string[];
|
|
7
7
|
rules: {
|
|
8
8
|
readonly eqeqeq: readonly ["warn"];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
base: ({
|
|
3
3
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
4
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
4
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
5
5
|
files: string[];
|
|
6
6
|
rules: {
|
|
7
7
|
readonly eqeqeq: readonly ["warn"];
|
|
@@ -137,7 +137,7 @@ declare const _default: {
|
|
|
137
137
|
})[];
|
|
138
138
|
react: ({
|
|
139
139
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
140
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
140
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
141
141
|
files: string[];
|
|
142
142
|
rules: {
|
|
143
143
|
readonly eqeqeq: readonly ["warn"];
|
|
@@ -3050,7 +3050,7 @@ declare const _default: {
|
|
|
3050
3050
|
})[];
|
|
3051
3051
|
node: ({
|
|
3052
3052
|
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
|
|
3053
|
-
} | import("eslint").Linter.FlatConfig | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
3053
|
+
} | import("eslint").Linter.FlatConfig<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | {
|
|
3054
3054
|
files: string[];
|
|
3055
3055
|
rules: {
|
|
3056
3056
|
readonly eqeqeq: readonly ["warn"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paratco/eslint-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "Paratco",
|
|
6
6
|
"license": "ISC",
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
"build": "tsc"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"eslint": "^9.
|
|
41
|
-
"typescript-eslint": "^8.
|
|
40
|
+
"eslint": "^9.29.0",
|
|
41
|
+
"typescript-eslint": "^8.34.0"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
44
|
"prettier": "^3.5.3"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@eslint/js": "^9.
|
|
47
|
+
"@eslint/js": "^9.29.0",
|
|
48
48
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
49
|
-
"eslint": "^9.
|
|
49
|
+
"eslint": "^9.29.0",
|
|
50
50
|
"eslint-config-prettier": "^10.1.5",
|
|
51
51
|
"eslint-import-resolver-typescript": "^4.4.3",
|
|
52
|
-
"eslint-plugin-import-x": "^4.15.
|
|
52
|
+
"eslint-plugin-import-x": "^4.15.2",
|
|
53
53
|
"eslint-plugin-react": "^7.37.5",
|
|
54
54
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
55
55
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
56
56
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
57
57
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
58
58
|
"globals": "^16.2.0",
|
|
59
|
-
"typescript-eslint": "^8.
|
|
59
|
+
"typescript-eslint": "^8.34.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"typescript": "^5.8.3"
|