File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ module.exports = {
4646 rules : {
4747 '@typescript-eslint/array-type' : [ 'error' , { default : 'array-simple' } ] ,
4848 '@typescript-eslint/no-require-imports' : 'error' ,
49- '@typescript-eslint/ban-ts-comment' : 'warn ' ,
49+ '@typescript-eslint/ban-ts-comment' : 'error ' ,
5050 ...typescriptBanTypesRules ( ) ,
5151 '@typescript-eslint/consistent-type-imports' : [
5252 'error' ,
@@ -64,8 +64,12 @@ module.exports = {
6464 'no-negated-condition' : 'error' ,
6565 eqeqeq : [ 'error' , 'smart' ] ,
6666 strict : 'error' ,
67- 'prefer-template' : 'warn' ,
68- 'object-shorthand' : [ 'warn' , 'always' , { avoidExplicitReturnArrows : true } ] ,
67+ 'prefer-template' : 'error' ,
68+ 'object-shorthand' : [
69+ 'error' ,
70+ 'always' ,
71+ { avoidExplicitReturnArrows : true } ,
72+ ] ,
6973 'prefer-destructuring' : [
7074 'error' ,
7175 { VariableDeclarator : { array : true , object : true } } ,
You can’t perform that action at this time.
0 commit comments