1
- import _import from 'eslint-plugin-import' ;
1
+ import path from 'path' ;
2
+ import { fileURLToPath } from 'url' ;
2
3
import globals from 'globals' ;
3
- import tsParser from '@typescript-eslint/parser' ;
4
- import path from 'node:path' ;
4
+ import _import from 'eslint-plugin-import' ;
5
5
import js from '@eslint/js' ;
6
+ import tsParser from '@typescript-eslint/parser' ;
6
7
import { FlatCompat } from '@eslint/eslintrc' ;
7
- import { fileURLToPath } from 'node:url' ;
8
- import { fixupConfigRules , fixupPluginRules } from '@eslint/compat' ;
8
+ import { fixupPluginRules } from '@eslint/compat' ;
9
9
10
+ // eslint-disable-next-line @typescript-eslint/naming-convention
10
11
const __filename = fileURLToPath ( import . meta. url ) ;
12
+ // eslint-disable-next-line @typescript-eslint/naming-convention
11
13
const __dirname = path . dirname ( __filename ) ;
12
14
const compat = new FlatCompat ( {
13
15
baseDirectory : __dirname ,
@@ -16,189 +18,179 @@ const compat = new FlatCompat({
16
18
} ) ;
17
19
18
20
export default [
19
- ...fixupConfigRules (
20
- compat . extends (
21
- 'eslint:recommended' ,
22
- 'plugin:@typescript-eslint/recommended' ,
23
- 'plugin:prettier/recommended' ,
24
- ) ,
21
+ ...compat . extends (
22
+ 'eslint:recommended' ,
23
+ 'plugin:@typescript-eslint/recommended' ,
24
+ 'plugin:prettier/recommended' ,
25
25
) ,
26
26
{
27
27
plugins : {
28
28
import : fixupPluginRules ( _import ) ,
29
29
} ,
30
-
31
30
languageOptions : {
32
31
globals : {
33
32
...globals . browser ,
34
33
...globals . commonjs ,
35
34
...globals . node ,
36
35
...globals . jest ,
37
36
} ,
38
-
39
37
parser : tsParser ,
40
38
ecmaVersion : 5 ,
41
39
sourceType : 'module' ,
42
-
43
40
parserOptions : {
44
41
project : [ './tsconfig.json' , './src/app/tsconfig.json' ] ,
45
42
} ,
46
43
} ,
47
-
48
44
rules : {
49
- "linebreak-style" : [ "error" , "unix" ] ,
50
- "no-empty" : 1 ,
51
- "no-useless-catch" : 1 ,
52
- "no-prototype-builtins" : 1 ,
53
- "no-constant-condition" : 0 ,
54
- "no-useless-escape" : 0 ,
55
- "no-console" : "error" ,
56
- "no-restricted-globals" : [
57
- "error" ,
58
- {
59
- "name" : "global" ,
60
- "message" : "Use `globalThis` instead"
61
- } ,
62
- {
63
- "name" : "window" ,
64
- "message" : "Use `globalThis` instead"
65
- }
66
- ] ,
67
- "require-yield" : 0 ,
68
- "eqeqeq" : [ "error" , "smart" ] ,
69
- "spaced-comment" : [
70
- "warn" ,
71
- "always" ,
72
- {
73
- "line" : {
74
- "exceptions" : [ "-" ]
75
- } ,
76
- "block" : {
77
- "exceptions" : [ "*" ]
78
- } ,
79
- "markers" : [ "/" ]
80
- }
81
- ] ,
82
- "capitalized-comments" : [
83
- "warn" ,
84
- "always" ,
85
- {
86
- "ignoreInlineComments" : true ,
87
- "ignoreConsecutiveComments" : true
88
- }
89
- ] ,
90
- "curly" : [
91
- "error" ,
92
- "multi-line" ,
93
- "consistent"
94
- ] ,
95
- "import/order" : [
96
- "error" ,
97
- {
98
- "groups" : [
99
- "type" ,
100
- "builtin" ,
101
- "external" ,
102
- "internal" ,
103
- "index" ,
104
- "sibling" ,
105
- "parent" ,
106
- "object"
107
- ] ,
108
- "pathGroups" : [
45
+ 'linebreak-style' : [ 'error' , 'unix' ] ,
46
+ 'no-empty' : 1 ,
47
+ 'no-useless-catch' : 1 ,
48
+ 'no-prototype-builtins' : 1 ,
49
+ 'no-constant-condition' : 0 ,
50
+ 'no-useless-escape' : 0 ,
51
+ 'no-console' : 'error' ,
52
+ 'no-restricted-globals' : [
53
+ 'error' ,
54
+ {
55
+ name : 'global' ,
56
+ message : 'Use `globalThis` instead' ,
57
+ } ,
58
+ {
59
+ name : 'window' ,
60
+ message : 'Use `globalThis` instead' ,
61
+ } ,
62
+ ] ,
63
+ 'prefer-rest-params' : 0 ,
64
+ 'require-yield' : 0 ,
65
+ eqeqeq : [ 'error' , 'smart' ] ,
66
+ 'spaced-comment' : [
67
+ 'warn' ,
68
+ 'always' ,
69
+ {
70
+ line : {
71
+ exceptions : [ '-' ] ,
72
+ } ,
73
+ block : {
74
+ exceptions : [ '*' ] ,
75
+ } ,
76
+ markers : [ '/' ] ,
77
+ } ,
78
+ ] ,
79
+ 'capitalized-comments' : [
80
+ 'warn' ,
81
+ 'always' ,
82
+ {
83
+ ignoreInlineComments : true ,
84
+ ignoreConsecutiveComments : true ,
85
+ } ,
86
+ ] ,
87
+ curly : [ 'error' , 'multi-line' , 'consistent' ] ,
88
+ 'import/order' : [
89
+ 'error' ,
90
+ {
91
+ groups : [
92
+ 'type' ,
93
+ 'builtin' ,
94
+ 'external' ,
95
+ 'internal' ,
96
+ 'index' ,
97
+ 'sibling' ,
98
+ 'parent' ,
99
+ 'object' ,
100
+ ] ,
101
+ pathGroups : [
109
102
{
110
- " pattern" : "@" ,
111
- " group" : " internal"
103
+ pattern : '@' ,
104
+ group : ' internal' ,
112
105
} ,
113
106
{
114
- "pattern" : "@/**" ,
115
- "group" : "internal"
116
- }
117
- ] ,
118
- "pathGroupsExcludedImportTypes" : [
119
- "type"
120
- ] ,
121
- "newlines-between" : "never"
122
- }
123
- ] ,
124
- "@typescript-eslint/no-namespace" : 0 ,
125
- "@typescript-eslint/no-explicit-any" : 0 ,
126
- "@typescript-eslint/explicit-module-boundary-types" : 0 ,
127
- "@typescript-eslint/no-unused-vars" : [
128
- "warn" ,
129
- {
130
- "varsIgnorePattern" : "^_" ,
131
- "argsIgnorePattern" : "^_"
132
- }
133
- ] ,
134
- "@typescript-eslint/no-inferrable-types" : 0 ,
135
- "@typescript-eslint/no-non-null-assertion" : 0 ,
136
- "@typescript-eslint/no-this-alias" : 0 ,
137
- "@typescript-eslint/no-var-requires" : 0 ,
138
- "@typescript-eslint/no-empty-function" : 0 ,
139
- "@typescript-eslint/no-empty-interface" : 0 ,
140
- "@typescript-eslint/consistent-type-imports" : [ "error" ] ,
141
- "@typescript-eslint/consistent-type-exports" : [ "error" ] ,
142
- "no-throw-literal" : "off" ,
143
- "@typescript-eslint/no-throw-literal" : "off" ,
144
- "@typescript-eslint/no-floating-promises" : [ "error" , {
145
- "ignoreVoid" : true ,
146
- "ignoreIIFE" : true
147
- } ] ,
148
- "@typescript-eslint/no-misused-promises" : [ "error" , {
149
- "checksVoidReturn" : false
150
- } ] ,
151
- "@typescript-eslint/await-thenable" : [ "error" ] ,
152
- "@typescript-eslint/naming-convention" : [
153
- "error" ,
154
- {
155
- "selector" : "default" ,
156
- "format" : [ "camelCase" ] ,
157
- "leadingUnderscore" : "allow" ,
158
- "trailingUnderscore" : "allowSingleOrDouble"
159
- } ,
160
- {
161
- "selector" : "function" ,
162
- "format" : [ "camelCase" , "PascalCase" ] ,
163
- "leadingUnderscore" : "allow" ,
164
- "trailingUnderscore" : "allowSingleOrDouble"
165
- } ,
166
- {
167
- "selector" : "variable" ,
168
- "format" : [ "camelCase" , "UPPER_CASE" , "PascalCase" ] ,
169
- "leadingUnderscore" : "allow" ,
170
- "trailingUnderscore" : "allowSingleOrDouble"
171
- } ,
172
- {
173
- "selector" : "parameter" ,
174
- "format" : [ "camelCase" ] ,
175
- "leadingUnderscore" : "allow" ,
176
- "trailingUnderscore" : "allowSingleOrDouble"
177
- } ,
178
- {
179
- "selector" : "typeLike" ,
180
- "format" : [ "PascalCase" ] ,
181
- "trailingUnderscore" : "allowSingleOrDouble"
182
- } ,
183
- {
184
- "selector" : "enumMember" ,
185
- "format" : [ "PascalCase" , "UPPER_CASE" ]
186
- } ,
187
- {
188
- "selector" : "objectLiteralProperty" ,
189
- "format" : null
190
- } ,
191
- {
192
- "selector" : "typeProperty" ,
193
- "format" : null
194
- }
195
- ] ,
196
- "@typescript-eslint/ban-ts-comment" : [
197
- "error" ,
198
- {
199
- "ts-ignore" : "allow-with-description"
200
- }
201
- ]
107
+ pattern : '@/**' ,
108
+ group : 'internal' ,
109
+ } ,
110
+ ] ,
111
+ pathGroupsExcludedImportTypes : [ 'type' ] ,
112
+ 'newlines-between' : 'never' ,
113
+ } ,
114
+ ] ,
115
+ '@typescript-eslint/no-require-imports' : 0 ,
116
+ '@typescript-eslint/no-namespace' : 0 ,
117
+ '@typescript-eslint/no-explicit-any' : 0 ,
118
+ '@typescript-eslint/explicit-module-boundary-types' : 0 ,
119
+ '@typescript-eslint/no-floating-promises' : [
120
+ 'error' ,
121
+ {
122
+ ignoreVoid : true ,
123
+ ignoreIIFE : true ,
124
+ } ,
125
+ ] ,
126
+ '@typescript-eslint/no-misused-promises' : [
127
+ 'error' ,
128
+ {
129
+ checksVoidReturn : false ,
130
+ } ,
131
+ ] ,
132
+ '@typescript-eslint/await-thenable' : [ 'error' ] ,
133
+ '@typescript-eslint/no-unused-vars' : [
134
+ 'warn' ,
135
+ {
136
+ varsIgnorePattern : '^_' ,
137
+ argsIgnorePattern : '^_' ,
138
+ } ,
139
+ ] ,
140
+ '@typescript-eslint/no-inferrable-types' : 0 ,
141
+ '@typescript-eslint/no-non-null-assertion' : 0 ,
142
+ '@typescript-eslint/no-this-alias' : 0 ,
143
+ '@typescript-eslint/no-var-requires' : 0 ,
144
+ '@typescript-eslint/no-empty-function' : 0 ,
145
+ '@typescript-eslint/no-empty-interface' : 0 ,
146
+ '@typescript-eslint/consistent-type-imports' : [ 'error' ] ,
147
+ '@typescript-eslint/consistent-type-exports' : [ 'error' ] ,
148
+ 'no-throw-literal' : 'off' ,
149
+ '@typescript-eslint/no-throw-literal' : 'off' ,
150
+ '@typescript-eslint/naming-convention' : [
151
+ 'error' ,
152
+ {
153
+ selector : 'function' ,
154
+ format : [ 'camelCase' , 'PascalCase' ] ,
155
+ leadingUnderscore : 'allow' ,
156
+ trailingUnderscore : 'allowSingleOrDouble' ,
157
+ } ,
158
+ {
159
+ selector : 'variable' ,
160
+ format : [ 'camelCase' , 'UPPER_CASE' , 'PascalCase' ] ,
161
+ leadingUnderscore : 'allow' ,
162
+ trailingUnderscore : 'allowSingleOrDouble' ,
163
+ } ,
164
+ {
165
+ selector : 'parameter' ,
166
+ format : [ 'camelCase' ] ,
167
+ leadingUnderscore : 'allow' ,
168
+ trailingUnderscore : 'allowSingleOrDouble' ,
169
+ } ,
170
+ {
171
+ selector : 'typeLike' ,
172
+ format : [ 'PascalCase' ] ,
173
+ trailingUnderscore : 'allowSingleOrDouble' ,
174
+ } ,
175
+ {
176
+ selector : 'enumMember' ,
177
+ format : [ 'PascalCase' , 'UPPER_CASE' ] ,
178
+ } ,
179
+ {
180
+ selector : 'objectLiteralProperty' ,
181
+ format : null ,
182
+ } ,
183
+ {
184
+ selector : 'typeProperty' ,
185
+ format : null ,
186
+ } ,
187
+ ] ,
188
+ '@typescript-eslint/ban-ts-comment' : [
189
+ 'error' ,
190
+ {
191
+ 'ts-ignore' : 'allow-with-description' ,
192
+ } ,
193
+ ] ,
202
194
} ,
203
195
} ,
204
196
] ;
0 commit comments