@lusc/eslint-config 8.6.0 → 10.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.
- package/index.js +0 -2
- package/package.json +12 -13
- package/configs/security.js +0 -10
package/index.js
CHANGED
|
@@ -7,7 +7,6 @@ import importConfig from './configs/import.js';
|
|
|
7
7
|
import n from './configs/n.js';
|
|
8
8
|
import promise from './configs/promise.js';
|
|
9
9
|
import regexp from './configs/regexp.js';
|
|
10
|
-
import security from './configs/security.js';
|
|
11
10
|
import typescript from './configs/typescript.js';
|
|
12
11
|
import unicorn from './configs/unicorn.js';
|
|
13
12
|
|
|
@@ -43,7 +42,6 @@ export function withOptions({typescriptGlobs}) {
|
|
|
43
42
|
n,
|
|
44
43
|
importConfig,
|
|
45
44
|
regexp,
|
|
46
|
-
security,
|
|
47
45
|
typescript(typescriptGlobs),
|
|
48
46
|
].flat();
|
|
49
47
|
}
|
package/package.json
CHANGED
|
@@ -4,19 +4,18 @@
|
|
|
4
4
|
"url": "https://github.com/melusc"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.
|
|
8
|
-
"@eslint/js": "^
|
|
9
|
-
"@typescript-eslint/parser": "^8.
|
|
7
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
8
|
+
"@eslint/js": "^10.0.1",
|
|
9
|
+
"@typescript-eslint/parser": "^8.57.2",
|
|
10
10
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
11
|
-
"eslint-plugin-import-x": "^4.16.
|
|
12
|
-
"eslint-plugin-n": "^17.
|
|
11
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
12
|
+
"eslint-plugin-n": "^17.24.0",
|
|
13
13
|
"eslint-plugin-promise": "^7.2.1",
|
|
14
|
-
"eslint-plugin-regexp": "^3.
|
|
15
|
-
"eslint-plugin-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"typescript": "^
|
|
19
|
-
"typescript-eslint": "^8.53.1"
|
|
14
|
+
"eslint-plugin-regexp": "^3.1.0",
|
|
15
|
+
"eslint-plugin-unicorn": "^64.0.0",
|
|
16
|
+
"globals": "^17.4.0",
|
|
17
|
+
"typescript": "^6.0.2",
|
|
18
|
+
"typescript-eslint": "^8.57.2"
|
|
20
19
|
},
|
|
21
20
|
"engines": {
|
|
22
21
|
"node": "^24.10.0 || ^25.0.0"
|
|
@@ -32,11 +31,11 @@
|
|
|
32
31
|
"license": "MIT",
|
|
33
32
|
"name": "@lusc/eslint-config",
|
|
34
33
|
"peerDependencies": {
|
|
35
|
-
"eslint": "^
|
|
34
|
+
"eslint": "^10.1.0"
|
|
36
35
|
},
|
|
37
36
|
"repository": {
|
|
38
37
|
"url": "https://github.com/melusc/eslint-config"
|
|
39
38
|
},
|
|
40
39
|
"type": "module",
|
|
41
|
-
"version": "
|
|
40
|
+
"version": "10.0.0"
|
|
42
41
|
}
|