@willbooster/eslint-config-js 11.1.0 → 11.2.1
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/README.md +1 -0
- package/eslint.config.js +1 -1
- package/package.json +11 -10
package/README.md
CHANGED
package/eslint.config.js
CHANGED
|
@@ -16,6 +16,7 @@ export default [
|
|
|
16
16
|
{
|
|
17
17
|
ignores: [
|
|
18
18
|
// Directories
|
|
19
|
+
'**/.venv/**',
|
|
19
20
|
'**/.yarn/**',
|
|
20
21
|
'**/3rd-party/**',
|
|
21
22
|
'**/@types/**',
|
|
@@ -120,7 +121,6 @@ export default [
|
|
|
120
121
|
],
|
|
121
122
|
},
|
|
122
123
|
},
|
|
123
|
-
// Add eslint-config-flat-gitignore before eslintConfigPrettier
|
|
124
124
|
eslintConfigFlatGitignore(),
|
|
125
125
|
// cf. https://github.com/prettier/eslint-config-prettier#installation
|
|
126
126
|
eslintConfigPrettier,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@willbooster/eslint-config-js",
|
|
3
|
-
"version": "11.1
|
|
3
|
+
"version": "11.2.1",
|
|
4
4
|
"description": "A ESLint flat config for JavaScript projects",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "WillBooster Inc.",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"eslint.config.js"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
+
"check-for-ai": "yarn install > /dev/null && yarn format > /dev/null && yarn lint-fix --quiet && yarn typecheck && yarn test --silent",
|
|
13
14
|
"cleanup": "yarn format && yarn lint-fix",
|
|
14
15
|
"format": "sort-package-json && yarn prettify",
|
|
15
16
|
"lint": "eslint --color",
|
|
@@ -19,21 +20,21 @@
|
|
|
19
20
|
},
|
|
20
21
|
"prettier": "@willbooster/prettier-config",
|
|
21
22
|
"devDependencies": {
|
|
22
|
-
"@eslint/js": "9.
|
|
23
|
-
"@willbooster/prettier-config": "10.0.
|
|
24
|
-
"eslint": "9.
|
|
23
|
+
"@eslint/js": "9.29.0",
|
|
24
|
+
"@willbooster/prettier-config": "10.0.1",
|
|
25
|
+
"eslint": "9.29.0",
|
|
25
26
|
"eslint-config-flat-gitignore": "2.1.0",
|
|
26
|
-
"eslint-config-prettier": "10.1.
|
|
27
|
-
"eslint-plugin-import-x": "4.
|
|
27
|
+
"eslint-config-prettier": "10.1.5",
|
|
28
|
+
"eslint-plugin-import-x": "4.15.2",
|
|
28
29
|
"eslint-plugin-sort-class-members": "1.21.0",
|
|
29
30
|
"eslint-plugin-sort-destructure-keys": "2.0.0",
|
|
30
|
-
"eslint-plugin-unicorn": "
|
|
31
|
+
"eslint-plugin-unicorn": "59.0.1",
|
|
31
32
|
"eslint-plugin-unused-imports": "4.1.4",
|
|
32
|
-
"globals": "16.
|
|
33
|
-
"lint-staged": "
|
|
33
|
+
"globals": "16.2.0",
|
|
34
|
+
"lint-staged": "16.1.2",
|
|
34
35
|
"micromatch": "4.0.8",
|
|
35
36
|
"prettier": "3.5.3",
|
|
36
|
-
"sort-package-json": "3.
|
|
37
|
+
"sort-package-json": "3.2.1"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
39
40
|
"@eslint/js": ">=9",
|