@biscuittin/eslint-config 0.4.6 → 0.4.8
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/index.d.mts +3 -2
- package/package.json +8 -8
- package/typegen.d.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -6294,6 +6294,7 @@ type EslintReactNoUnstableDefaultProps = [] | [{
|
|
|
6294
6294
|
}];
|
|
6295
6295
|
// ----- @eslint-react/no-useless-fragment -----
|
|
6296
6296
|
type EslintReactNoUselessFragment = [] | [{
|
|
6297
|
+
allowEmptyFragment?: boolean;
|
|
6297
6298
|
allowExpressions?: boolean;
|
|
6298
6299
|
}];
|
|
6299
6300
|
// ----- @next/next/no-html-link-for-pages -----
|
|
@@ -14863,9 +14864,9 @@ interface ESLintConfigOptions {
|
|
|
14863
14864
|
typescript?: SharedOptions<OptionsTypeScript> | boolean;
|
|
14864
14865
|
json?: SharedOptions<OptionsExtraFiles> | boolean;
|
|
14865
14866
|
react?: SharedOptions<OptionsReact> | boolean;
|
|
14866
|
-
nextjs?: SharedOptions
|
|
14867
|
+
nextjs?: SharedOptions;
|
|
14867
14868
|
node?: SharedOptions<OptionsNodeJs> | boolean;
|
|
14868
|
-
tailwindcss?: SharedOptions<OptionsTailwindCss
|
|
14869
|
+
tailwindcss?: SharedOptions<OptionsTailwindCss>;
|
|
14869
14870
|
}
|
|
14870
14871
|
/**
|
|
14871
14872
|
* Construct an array of ESLint flat config items.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biscuittin/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.8",
|
|
5
5
|
"description": "A collection of ESLint configurations for Biscuit Tin projects.",
|
|
6
6
|
"author": "Biscuit Tin <opensource@biscuitt.in>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
"eslint-plugin-n": "^17.23.1",
|
|
75
75
|
"eslint-plugin-perfectionist": "^4.15.1",
|
|
76
76
|
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
77
|
-
"eslint-plugin-react-dom": "^2.3.
|
|
77
|
+
"eslint-plugin-react-dom": "^2.3.12",
|
|
78
78
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
79
|
-
"eslint-plugin-react-hooks-extra": "^2.3.
|
|
80
|
-
"eslint-plugin-react-naming-convention": "^2.3.
|
|
79
|
+
"eslint-plugin-react-hooks-extra": "^2.3.12",
|
|
80
|
+
"eslint-plugin-react-naming-convention": "^2.3.12",
|
|
81
81
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
82
|
-
"eslint-plugin-react-web-api": "^2.3.
|
|
83
|
-
"eslint-plugin-react-x": "^2.3.
|
|
82
|
+
"eslint-plugin-react-web-api": "^2.3.12",
|
|
83
|
+
"eslint-plugin-react-x": "^2.3.12",
|
|
84
84
|
"eslint-plugin-regexp": "^2.10.0",
|
|
85
85
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
86
86
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
@@ -89,11 +89,11 @@
|
|
|
89
89
|
"jsonc-eslint-parser": "^2.4.1",
|
|
90
90
|
"local-pkg": "^1.1.2",
|
|
91
91
|
"ts-api-utils": "^2.1.0",
|
|
92
|
-
"typescript-eslint": "^8.
|
|
92
|
+
"typescript-eslint": "^8.48.1"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
95
|
"@eslint/config-inspector": "^1.4.2",
|
|
96
|
-
"@typescript-eslint/parser": "^8.
|
|
96
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
97
97
|
"dprint": "^0.50.2",
|
|
98
98
|
"eslint": "^9.39.1",
|
|
99
99
|
"tailwindcss": "^4.1.17",
|
package/typegen.d.ts
CHANGED
|
@@ -6294,6 +6294,8 @@ type EslintReactNoUnstableDefaultProps = []|[{
|
|
|
6294
6294
|
// ----- @eslint-react/no-useless-fragment -----
|
|
6295
6295
|
type EslintReactNoUselessFragment = []|[{
|
|
6296
6296
|
|
|
6297
|
+
allowEmptyFragment?: boolean
|
|
6298
|
+
|
|
6297
6299
|
allowExpressions?: boolean
|
|
6298
6300
|
}]
|
|
6299
6301
|
// ----- @next/next/no-html-link-for-pages -----
|