@lusc/eslint-config 14.3.0 → 15.0.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/index.js +2 -3
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as tsParser from '@typescript-eslint/parser';
|
|
2
|
+
import {globalIgnores} from 'eslint/config';
|
|
2
3
|
import globals from 'globals';
|
|
3
4
|
|
|
4
5
|
import comments from './configs/comments.js';
|
|
@@ -21,9 +22,7 @@ const ignores = [
|
|
|
21
22
|
|
|
22
23
|
export function withOptions({typescriptGlobs}) {
|
|
23
24
|
return [
|
|
24
|
-
|
|
25
|
-
ignores,
|
|
26
|
-
},
|
|
25
|
+
globalIgnores(ignores, '@lusc/eslint-config global ignores'),
|
|
27
26
|
{
|
|
28
27
|
languageOptions: {
|
|
29
28
|
globals: {
|
package/package.json
CHANGED
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
|
|
8
8
|
"@eslint/js": "^10.0.1",
|
|
9
|
-
"@typescript-eslint/parser": "^8.
|
|
9
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
10
10
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
11
|
-
"eslint-plugin-import-x": "^4.
|
|
11
|
+
"eslint-plugin-import-x": "^4.17.0",
|
|
12
12
|
"eslint-plugin-n": "^18.1.0",
|
|
13
13
|
"eslint-plugin-promise": "^7.3.0",
|
|
14
14
|
"eslint-plugin-regexp": "^3.1.0",
|
|
15
|
-
"eslint-plugin-unicorn": "^
|
|
16
|
-
"globals": "^17.
|
|
15
|
+
"eslint-plugin-unicorn": "^69.0.0",
|
|
16
|
+
"globals": "^17.7.0",
|
|
17
17
|
"typescript": "^6.0.3",
|
|
18
|
-
"typescript-eslint": "^8.
|
|
18
|
+
"typescript-eslint": "^8.62.0"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": "^24.10.0 || ^25.0.0 || ^26.0.0"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"url": "https://github.com/melusc/eslint-config"
|
|
38
38
|
},
|
|
39
39
|
"type": "module",
|
|
40
|
-
"version": "
|
|
40
|
+
"version": "15.0.1"
|
|
41
41
|
}
|