@lenne.tech/eslint-config-ts 1.0.7 → 2.0.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.
Files changed (2) hide show
  1. package/index.js +1 -4
  2. package/package.json +15 -14
package/index.js CHANGED
@@ -119,9 +119,6 @@ export default [
119
119
  { exceptAfterSingleLine: true },
120
120
  ],
121
121
 
122
- "@typescript-eslint/no-unused-vars": "warn",
123
- "@typescript-eslint/no-unused-expressions": "warn",
124
-
125
122
  // off
126
123
  "@typescript-eslint/consistent-indexed-object-style": "off",
127
124
  "@typescript-eslint/naming-convention": "off",
@@ -136,7 +133,7 @@ export default [
136
133
  "@typescript-eslint/explicit-module-boundary-types": "off",
137
134
  "@typescript-eslint/ban-types": "off",
138
135
  "@typescript-eslint/triple-slash-reference": "off",
139
- // handled by unused-imports/no-unused-imports
136
+ "@typescript-eslint/no-unused-vars": "off", // handled by unused-imports/no-unused-vars
140
137
 
141
138
 
142
139
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lenne.tech/eslint-config-ts",
3
- "version": "1.0.7",
3
+ "version": "2.0.0",
4
4
  "description": "ESLint config of lenne.Tech for TypeScript",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -12,29 +12,30 @@
12
12
  ],
13
13
  "type": "module",
14
14
  "scripts": {
15
- "watch": "watch 'yalc push --private'"
15
+ "watch": "watch 'yalc push --private'",
16
+ "reinit": "rimraf package-lock.json && rimraf node_modules && npm cache clean --force && npm i"
16
17
  },
17
18
  "peerDependencies": {
18
19
  "eslint": ">=9.0.0"
19
20
  },
20
21
  "dependencies": {
21
- "@typescript-eslint/parser": "8.19.1",
22
- "@typescript-eslint/eslint-plugin": "8.19.1",
23
- "eslint-plugin-import": "2.31.0",
24
- "eslint-plugin-unused-imports": "4.1.4",
25
- "eslint-plugin-yml": "1.16.0",
26
- "@stylistic/eslint-plugin": "2.12.1",
27
- "eslint-config-prettier": "9.1.0",
22
+ "@stylistic/eslint-plugin": "4.2.0",
23
+ "@typescript-eslint/eslint-plugin": "8.31.1",
24
+ "@typescript-eslint/parser": "8.31.1",
25
+ "eslint-config-prettier": "10.1.2",
28
26
  "eslint-plugin-eslint-comments": "3.2.0",
29
- "eslint-plugin-jsonc": "2.18.2",
27
+ "eslint-plugin-import": "2.31.0",
28
+ "eslint-plugin-jsonc": "2.20.0",
30
29
  "eslint-plugin-markdown": "5.1.0",
31
30
  "eslint-plugin-no-only-tests": "3.3.0",
32
- "eslint-plugin-perfectionist": "4.5.0",
33
- "eslint-plugin-prettier": "5.0.1",
31
+ "eslint-plugin-perfectionist": "4.12.3",
32
+ "eslint-plugin-prettier": "5.4.0",
33
+ "eslint-plugin-unused-imports": "4.1.4",
34
+ "eslint-plugin-yml": "1.18.0",
34
35
  "functions-have-names": "1.2.3"
35
36
  },
36
37
  "devDependencies": {
37
- "eslint": "9.17.0",
38
- "watch": "1.0.2"
38
+ "eslint": "9.26.0",
39
+ "watch": "^0.13.0"
39
40
  }
40
41
  }