@becklyn/eslint 1.0.4 → 1.1.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/.turbo/turbo-test.log +1 -1
- package/CHANGELOG.md +12 -0
- package/base.js +9 -0
- package/package.json +7 -6
package/.turbo/turbo-test.log
CHANGED
package/CHANGELOG.md
CHANGED
package/base.js
CHANGED
|
@@ -2,6 +2,7 @@ import js from "@eslint/js";
|
|
|
2
2
|
import eslintConfigPrettier from "eslint-config-prettier";
|
|
3
3
|
import tseslint from "typescript-eslint";
|
|
4
4
|
import importAlias from "@limegrass/eslint-plugin-import-alias";
|
|
5
|
+
import unusedImports from "eslint-plugin-unused-imports";
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* A shared ESLint configuration for the repository.
|
|
@@ -25,6 +26,14 @@ export const config = [
|
|
|
25
26
|
],
|
|
26
27
|
},
|
|
27
28
|
},
|
|
29
|
+
{
|
|
30
|
+
plugins: {
|
|
31
|
+
"unused-imports": unusedImports,
|
|
32
|
+
},
|
|
33
|
+
rules: {
|
|
34
|
+
"unused-imports/no-unused-imports": "error",
|
|
35
|
+
},
|
|
36
|
+
},
|
|
28
37
|
{
|
|
29
38
|
ignores: ["dist/**"],
|
|
30
39
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@becklyn/eslint",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "the eslint-config base we use for our TypeScript apps",
|
|
6
6
|
"homepage": "https://github.com/Becklyn-Studios/ts-libs",
|
|
@@ -19,16 +19,17 @@
|
|
|
19
19
|
"test": "echo \"Error: no test specified\" && exit 0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@eslint/js": "^9.
|
|
22
|
+
"@eslint/js": "^9.20.0",
|
|
23
23
|
"@limegrass/eslint-plugin-import-alias": "^1.5.0",
|
|
24
|
-
"@next/eslint-plugin-next": "^15.1.
|
|
25
|
-
"eslint": "^9.
|
|
24
|
+
"@next/eslint-plugin-next": "^15.1.7",
|
|
25
|
+
"eslint": "^9.20.1",
|
|
26
26
|
"eslint-config-prettier": "^10.0.1",
|
|
27
27
|
"eslint-plugin-only-warn": "^1.1.0",
|
|
28
28
|
"eslint-plugin-react": "^7.37.4",
|
|
29
29
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
30
|
-
"
|
|
30
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
31
|
+
"globals": "^15.15.0",
|
|
31
32
|
"typescript": "^5.7.3",
|
|
32
|
-
"typescript-eslint": "^8.
|
|
33
|
+
"typescript-eslint": "^8.24.0"
|
|
33
34
|
}
|
|
34
35
|
}
|