@w0s/eslint-config 9.3.1 → 9.4.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 +0 -1
- package/eslint.config.js +5 -1
- package/package.json +6 -6
package/README.md
CHANGED
package/eslint.config.js
CHANGED
|
@@ -16,7 +16,6 @@ import configFunctional from './rules/functional.js';
|
|
|
16
16
|
import configImport from './rules/import.js';
|
|
17
17
|
import configJsdoc from './rules/jsdoc.js';
|
|
18
18
|
|
|
19
|
-
/** @type {import("eslint").Linter.Config[]} */
|
|
20
19
|
export default defineConfig(
|
|
21
20
|
eslint.configs.recommended,
|
|
22
21
|
configEslintPossibleProblems,
|
|
@@ -39,9 +38,13 @@ export default defineConfig(
|
|
|
39
38
|
globals: globals.nodeBuiltin,
|
|
40
39
|
},
|
|
41
40
|
extends: [
|
|
41
|
+
// @ts-expect-error: ts(2322)
|
|
42
42
|
pluginFunctional.configs.externalVanillaRecommended,
|
|
43
|
+
// @ts-expect-error: ts(2322)
|
|
43
44
|
pluginFunctional.configs.recommended,
|
|
45
|
+
// @ts-expect-error: ts(2322)
|
|
44
46
|
pluginFunctional.configs.stylistic,
|
|
47
|
+
// @ts-expect-error: ts(2322)
|
|
45
48
|
pluginFunctional.configs.disableTypeChecked,
|
|
46
49
|
],
|
|
47
50
|
rules: {
|
|
@@ -110,6 +113,7 @@ export default defineConfig(
|
|
|
110
113
|
'no-new': 'off',
|
|
111
114
|
'no-unused-expressions': 'off',
|
|
112
115
|
'import/no-extraneous-dependencies': 'off',
|
|
116
|
+
'safely-storage/try-catch': 'off',
|
|
113
117
|
},
|
|
114
118
|
},
|
|
115
119
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w0s/eslint-config",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.4.1",
|
|
4
4
|
"description": "ESLint configuration file used on `w0s.jp`",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@eslint/js": "^9.39.2",
|
|
29
|
-
"@types/node": "^24.10.
|
|
29
|
+
"@types/node": "^24.10.4",
|
|
30
30
|
"eslint": "^9.39.2",
|
|
31
31
|
"eslint-plugin-functional": "^9.0.2",
|
|
32
32
|
"eslint-plugin-import": "^2.32.0",
|
|
33
33
|
"eslint-plugin-jsdoc": "^61.5.0",
|
|
34
34
|
"eslint-plugin-safely-storage": "^1.0.3",
|
|
35
|
-
"globals": "^
|
|
36
|
-
"typescript-eslint": "^8.
|
|
35
|
+
"globals": "^17.0.0",
|
|
36
|
+
"typescript-eslint": "^8.51.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@eslint/js": "^9.35.0",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"eslint-plugin-import": "^2.32.0",
|
|
43
43
|
"eslint-plugin-jsdoc": "^61.2.0",
|
|
44
44
|
"eslint-plugin-safely-storage": "^1.0.0",
|
|
45
|
-
"globals": "^
|
|
46
|
-
"typescript-eslint": "^8.
|
|
45
|
+
"globals": "^17.0.0",
|
|
46
|
+
"typescript-eslint": "^8.50.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|