@w0s/eslint-config 7.0.0-rc.3 → 7.0.0-rc.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/README.md CHANGED
@@ -8,7 +8,7 @@ ESLint configuration file used on my personal website ([w0s.jp](https://github.c
8
8
  ## Base rules & plugins
9
9
 
10
10
  - [eslint:recommended](https://eslint.org/docs/latest/user-guide/configuring/configuration-files#using-eslintrecommended)
11
- - [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import)
11
+ - [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import):recommended
12
12
  - [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc):recommended
13
13
 
14
14
  ### TypeScript
@@ -27,7 +27,6 @@ export default [
27
27
  ...w0sConfig,
28
28
  {
29
29
  // other options
30
- }
30
+ },
31
31
  ];
32
-
33
32
  ```
package/eslint.config.js CHANGED
@@ -65,14 +65,7 @@ export default tseslint.config(
65
65
  ...pluginJsdoc.configs['flat/recommended-typescript'].rules,
66
66
  'dot-notation': 'off',
67
67
  'import/no-unresolved': 'off',
68
- '@typescript-eslint/dot-notation': 'off',
69
68
  '@typescript-eslint/no-extraneous-class': 'off',
70
- '@typescript-eslint/no-non-null-assertion': 'off',
71
- '@typescript-eslint/no-unsafe-argument': 'off',
72
- '@typescript-eslint/no-unsafe-assignment': 'off',
73
- '@typescript-eslint/no-unsafe-call': 'off',
74
- '@typescript-eslint/no-unsafe-member-access': 'off',
75
- '@typescript-eslint/no-unsafe-return': 'off',
76
69
  '@typescript-eslint/strict-boolean-expressions': [
77
70
  'error',
78
71
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w0s/eslint-config",
3
- "version": "7.0.0-rc.3",
3
+ "version": "7.0.0-rc.4",
4
4
  "description": "ESLint configuration file used on w0s.jp",
5
5
  "keywords": [
6
6
  "eslint",
@@ -21,20 +21,21 @@
21
21
  },
22
22
  "scripts": {
23
23
  "test": "node __tests__/index.test.js",
24
- "lint": "eslint eslint.config.js"
24
+ "lint": "eslint __tests__/*.js rules/**/*.js eslint.config.js"
25
25
  },
26
26
  "dependencies": {
27
27
  "@eslint/eslintrc": "^3.1.0",
28
28
  "@eslint/js": "^8.57.0",
29
- "@typescript-eslint/eslint-plugin": "^7.17.0",
30
- "@typescript-eslint/parser": "^7.17.0",
29
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
30
+ "@typescript-eslint/parser": "^7.18.0",
31
31
  "eslint-plugin-import": "^2.29.1",
32
- "eslint-plugin-jsdoc": "^48.8.3",
32
+ "eslint-plugin-jsdoc": "^48.9.2",
33
33
  "globals": "^15.8.0",
34
- "typescript-eslint": "^7.17.0"
34
+ "typescript-eslint": "^7.18.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/eslint": "^8.56.11",
38
+ "@types/node": "^22.0.0",
38
39
  "eslint": "^8.57.0"
39
40
  },
40
41
  "peerDependencies": {