@@ -41,10 +41,7 @@ module.exports = {
41
41
ignoreProperties : true ,
42
42
} ,
43
43
] ,
44
- "@typescript-eslint/no-unused-vars" : [
45
- "error" ,
46
- { argsIgnorePattern : "^_" } ,
47
- ] ,
44
+ "@typescript-eslint/no-unused-vars" : [ "error" , { argsIgnorePattern : "^_" } ] ,
48
45
"@typescript-eslint/prefer-includes" : "warn" ,
49
46
"@typescript-eslint/prefer-literal-enum-member" : [
50
47
"error" ,
@@ -87,7 +84,7 @@ module.exports = {
87
84
} ,
88
85
} ,
89
86
{
90
- files : [ ".eslintrc.cjs" , "rollup.config.ts" ] ,
87
+ files : [ "scripts/**" , "build-plugins/**" , " .eslintrc.cjs", "rollup.config.ts" ] ,
91
88
env : {
92
89
node : true ,
93
90
} ,
@@ -110,6 +107,7 @@ module.exports = {
110
107
{
111
108
devDependencies : [
112
109
"**/__tests__/**" ,
110
+ "build-plugins/**" ,
113
111
"scripts/**" ,
114
112
".eslintrc.cjs" ,
115
113
"rollup.config.ts" ,
@@ -123,16 +121,7 @@ module.exports = {
123
121
alphabetize : {
124
122
order : "asc" ,
125
123
} ,
126
- groups : [
127
- "builtin" ,
128
- "external" ,
129
- "internal" ,
130
- "parent" ,
131
- "sibling" ,
132
- "index" ,
133
- "object" ,
134
- "type" ,
135
- ] ,
124
+ groups : [ "builtin" , "external" , "internal" , "parent" , "sibling" , "index" , "object" , "type" ] ,
136
125
"newlines-between" : "always" ,
137
126
} ,
138
127
] ,
@@ -143,10 +132,7 @@ module.exports = {
143
132
144
133
"no-array-constructor" : "error" ,
145
134
"no-caller" : "error" ,
146
- "no-console" : [
147
- "warn" ,
148
- { allow : [ "warn" , "error" , "time" , "timeEnd" , "timeStamp" ] } ,
149
- ] ,
135
+ "no-console" : [ "warn" , { allow : [ "warn" , "error" , "time" , "timeEnd" , "timeStamp" ] } ] ,
150
136
"no-eval" : "error" ,
151
137
"no-extend-native" : "warn" ,
152
138
"no-extra-bind" : "warn" ,
@@ -183,11 +169,7 @@ module.exports = {
183
169
"prefer-rest-params" : "warn" ,
184
170
"prefer-spread" : "warn" ,
185
171
"prefer-template" : "error" ,
186
- quotes : [
187
- "error" ,
188
- "double" ,
189
- { allowTemplateLiterals : false , avoidEscape : false } ,
190
- ] ,
172
+ quotes : [ "error" , "double" , { allowTemplateLiterals : false , avoidEscape : false } ] ,
191
173
radix : "warn" ,
192
174
"sort-imports" : [ "error" , { ignoreDeclarationSort : true } ] ,
193
175
} ,
0 commit comments