File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 33// YOU CAN REGENERATE IT USING yarn generate:configs
44
55export = {
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' ] ,
127 rules : {
138 '@typescript-eslint/array-type' : 'warn' ,
149 '@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>(
240240 { } ,
241241) ;
242242const strictConfig : LinterConfig = {
243- extends : [
244- ...EXTENDS ,
245- './configs/recommended' ,
246- './configs/recommended-requiring-type-checking' ,
247- ] ,
243+ extends : EXTENDS ,
248244 rules : strictRules ,
249245} ;
250246writeConfig ( strictConfig , path . resolve ( __dirname , '../src/configs/strict.ts' ) ) ;
You can’t perform that action at this time.
0 commit comments