File tree 2 files changed +2
-11
lines changed
2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 3
3
// YOU CAN REGENERATE IT USING yarn generate:configs
4
4
5
5
export = {
6
- extends : [
7
- './configs/base' ,
8
- './configs/eslint-recommended' ,
9
- './configs/recommended' ,
10
- './configs/recommended-requiring-type-checking' ,
11
- ] ,
6
+ extends : [ './configs/base' , './configs/eslint-recommended' ] ,
12
7
rules : {
13
8
'@typescript-eslint/array-type' : 'warn' ,
14
9
'@typescript-eslint/ban-tslint-comment' : 'warn' ,
Original file line number Diff line number Diff line change @@ -240,11 +240,7 @@ const strictRules = ruleEntries.filter(entryIsStrict).reduce<LinterConfigRules>(
240
240
{ } ,
241
241
) ;
242
242
const strictConfig : LinterConfig = {
243
- extends : [
244
- ...EXTENDS ,
245
- './configs/recommended' ,
246
- './configs/recommended-requiring-type-checking' ,
247
- ] ,
243
+ extends : EXTENDS ,
248
244
rules : strictRules ,
249
245
} ;
250
246
writeConfig ( strictConfig , path . resolve ( __dirname , '../src/configs/strict.ts' ) ) ;
You can’t perform that action at this time.
0 commit comments