@@ -2,32 +2,46 @@ import jsEslint from "@eslint/js";
2
2
import gitignore from "eslint-config-flat-gitignore" ;
3
3
import eslintConfigPrettier from "eslint-config-prettier" ;
4
4
import importX from "eslint-plugin-import-x" ;
5
+ import jsonc from "eslint-plugin-jsonc" ;
5
6
import perfectionist from "eslint-plugin-perfectionist" ;
6
7
import tsEslint from "typescript-eslint" ;
7
8
8
9
export default tsEslint . config (
9
- jsEslint . configs . recommended ,
10
- ...tsEslint . configs . recommended ,
11
- eslintConfigPrettier ,
12
- importX . flatConfigs . recommended ,
13
- perfectionist . configs [ "recommended-natural" ] ,
14
10
gitignore ( ) ,
11
+ eslintConfigPrettier ,
15
12
{
13
+ extends : [
14
+ jsEslint . configs . recommended ,
15
+ ...tsEslint . configs . recommended ,
16
+ importX . flatConfigs . recommended ,
17
+ perfectionist . configs [ "recommended-natural" ] ,
18
+ ] ,
19
+ files : [ "**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}" ] ,
16
20
languageOptions : {
17
21
ecmaVersion : "latest" ,
18
22
globals : {
19
23
console : true ,
20
24
process : true ,
21
25
} ,
26
+ parser : tsEslint . parser ,
22
27
sourceType : "module" ,
23
28
} ,
24
- rules : {
25
- "prefer-const" : "off" ,
26
- "sort-imports" : "off" ,
29
+ plugins : {
30
+ "@typescript-eslint" : tsEslint . plugin ,
27
31
} ,
28
- } ,
29
- {
30
32
rules : {
33
+ "@typescript-eslint/consistent-type-imports" : [ "error" , { fixStyle : "inline-type-imports" } ] ,
34
+ "@typescript-eslint/no-empty-interface" : "off" ,
35
+ "@typescript-eslint/no-non-null-assertion" : "off" ,
36
+ "@typescript-eslint/no-unused-vars" : [
37
+ "error" ,
38
+ {
39
+ argsIgnorePattern : "^_" ,
40
+ destructuredArrayIgnorePattern : "^_" ,
41
+ ignoreRestSiblings : true ,
42
+ varsIgnorePattern : "^_" ,
43
+ } ,
44
+ ] ,
31
45
"import-x/consistent-type-specifier-style" : [ "error" , "prefer-inline" ] ,
32
46
"import-x/no-duplicates" : [ "error" , { considerQueryString : true , "prefer-inline" : true } ] ,
33
47
"import-x/no-unresolved" : "off" ,
@@ -46,29 +60,23 @@ export default tsEslint.config(
46
60
] ,
47
61
} ,
48
62
] ,
63
+ "prefer-const" : "off" ,
64
+ "sort-imports" : "off" ,
49
65
} ,
50
66
} ,
51
67
{
52
- files : [ "**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}" ] ,
53
- languageOptions : {
54
- parser : tsEslint . parser ,
55
- } ,
56
- plugins : {
57
- "@typescript-eslint" : tsEslint . plugin ,
58
- } ,
68
+ extends : [ ...jsonc . configs [ "flat/recommended-with-json" ] ] ,
69
+ files : [
70
+ "src/**/*.json" ,
71
+ "scripts/**/*.json" ,
72
+ "tsconfig.json" ,
73
+ ".prettierrc.json" ,
74
+ ".prettierrc" ,
75
+ "typedoc.json" ,
76
+ "mangle-cache.json" ,
77
+ ] ,
59
78
rules : {
60
- "@typescript-eslint/consistent-type-imports" : [ "error" , { fixStyle : "inline-type-imports" } ] ,
61
- "@typescript-eslint/no-empty-interface" : "off" ,
62
- "@typescript-eslint/no-non-null-assertion" : "off" ,
63
- "@typescript-eslint/no-unused-vars" : [
64
- "error" ,
65
- {
66
- argsIgnorePattern : "^_" ,
67
- destructuredArrayIgnorePattern : "^_" ,
68
- ignoreRestSiblings : true ,
69
- varsIgnorePattern : "^_" ,
70
- } ,
71
- ] ,
79
+ "jsonc/sort-keys" : [ "error" , "asc" , { caseSensitive : true , minKeys : 2 , natural : true } ] ,
72
80
} ,
73
81
} ,
74
82
) ;
0 commit comments