@w0s/eslint-config 9.4.0 → 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 CHANGED
@@ -43,7 +43,6 @@ or
43
43
  import { defineConfig } from 'eslint/config';
44
44
  import w0sConfig from '@w0s/eslint-config';
45
45
 
46
- /** @type {import("eslint").Linter.Config[]} */
47
46
  export default defineConfig(w0sConfig, {
48
47
  // other options
49
48
  });
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w0s/eslint-config",
3
- "version": "9.4.0",
3
+ "version": "9.4.1",
4
4
  "description": "ESLint configuration file used on `w0s.jp`",
5
5
  "keywords": [
6
6
  "eslint",
@@ -32,8 +32,8 @@
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": "^16.5.0",
36
- "typescript-eslint": "^8.50.1"
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": "^16.4.0",
46
- "typescript-eslint": "^8.46.0"
45
+ "globals": "^17.0.0",
46
+ "typescript-eslint": "^8.50.0"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"