@jsse/eslint-config 0.2.3 → 0.2.4
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -4922,7 +4922,7 @@ interface JavascriptRuleOptions {
|
|
|
4922
4922
|
"unused-imports/no-unused-imports"?: Linter.RuleEntry<UnusedImportsNoUnusedImports>;
|
|
4923
4923
|
/**
|
|
4924
4924
|
* Disallow unused variables
|
|
4925
|
-
* @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-
|
|
4925
|
+
* @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-vars.md
|
|
4926
4926
|
*/
|
|
4927
4927
|
"unused-imports/no-unused-vars"?: Linter.RuleEntry<UnusedImportsNoUnusedVars>;
|
|
4928
4928
|
}
|
|
@@ -14730,7 +14730,7 @@ interface TypescriptRuleOptions {
|
|
|
14730
14730
|
"@typescript-eslint/no-unused-expressions"?: Linter.RuleEntry<TypescriptEslintNoUnusedExpressions>;
|
|
14731
14731
|
/**
|
|
14732
14732
|
* Disallow unused variables
|
|
14733
|
-
* @see https://
|
|
14733
|
+
* @see https://typescript-eslint.io/rules/no-unused-vars
|
|
14734
14734
|
*/
|
|
14735
14735
|
"@typescript-eslint/no-unused-vars"?: Linter.RuleEntry<TypescriptEslintNoUnusedVars>;
|
|
14736
14736
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -4922,7 +4922,7 @@ interface JavascriptRuleOptions {
|
|
|
4922
4922
|
"unused-imports/no-unused-imports"?: Linter.RuleEntry<UnusedImportsNoUnusedImports>;
|
|
4923
4923
|
/**
|
|
4924
4924
|
* Disallow unused variables
|
|
4925
|
-
* @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-
|
|
4925
|
+
* @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-vars.md
|
|
4926
4926
|
*/
|
|
4927
4927
|
"unused-imports/no-unused-vars"?: Linter.RuleEntry<UnusedImportsNoUnusedVars>;
|
|
4928
4928
|
}
|
|
@@ -14730,7 +14730,7 @@ interface TypescriptRuleOptions {
|
|
|
14730
14730
|
"@typescript-eslint/no-unused-expressions"?: Linter.RuleEntry<TypescriptEslintNoUnusedExpressions>;
|
|
14731
14731
|
/**
|
|
14732
14732
|
* Disallow unused variables
|
|
14733
|
-
* @see https://
|
|
14733
|
+
* @see https://typescript-eslint.io/rules/no-unused-vars
|
|
14734
14734
|
*/
|
|
14735
14735
|
"@typescript-eslint/no-unused-vars"?: Linter.RuleEntry<TypescriptEslintNoUnusedVars>;
|
|
14736
14736
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.4",
|
|
5
5
|
"description": "@jsse/eslint-config ~ WYSIWYG",
|
|
6
6
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@eslint/js": "~9.8.0",
|
|
62
|
-
"@stylistic/eslint-plugin": "2.6.
|
|
62
|
+
"@stylistic/eslint-plugin": "2.6.2",
|
|
63
63
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
64
64
|
"@typescript-eslint/parser": "^8.0.1",
|
|
65
65
|
"eslint-config-flat-gitignore": "^0.1.8",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"eslint-plugin-toml": "^0.11.1",
|
|
80
80
|
"eslint-plugin-tsdoc": "^0.3.0",
|
|
81
81
|
"eslint-plugin-unicorn": "^55.0.0",
|
|
82
|
-
"eslint-plugin-unused-imports": "^4.
|
|
82
|
+
"eslint-plugin-unused-imports": "^4.1.2",
|
|
83
83
|
"eslint-plugin-vitest": "0.5.4",
|
|
84
84
|
"eslint-plugin-yml": "^1.14.0",
|
|
85
85
|
"jsonc-eslint-parser": "^2.4.0",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"rimraf": "^6.0.1",
|
|
112
112
|
"tailwindcss": "^3.4.9",
|
|
113
113
|
"tsup": "^8.2.4",
|
|
114
|
-
"tsx": "^4.
|
|
114
|
+
"tsx": "^4.17.0",
|
|
115
115
|
"typescript": "~5.5.4",
|
|
116
116
|
"vitest": "^2.0.5"
|
|
117
117
|
},
|