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 = {
46
46
rules : {
47
47
'@typescript-eslint/array-type' : [ 'error' , { default : 'array-simple' } ] ,
48
48
'@typescript-eslint/no-require-imports' : 'error' ,
49
- '@typescript-eslint/ban-ts-comment' : 'warn ' ,
49
+ '@typescript-eslint/ban-ts-comment' : 'error ' ,
50
50
...typescriptBanTypesRules ( ) ,
51
51
'@typescript-eslint/consistent-type-imports' : [
52
52
'error' ,
@@ -64,8 +64,12 @@ module.exports = {
64
64
'no-negated-condition' : 'error' ,
65
65
eqeqeq : [ 'error' , 'smart' ] ,
66
66
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
+ ] ,
69
73
'prefer-destructuring' : [
70
74
'error' ,
71
75
{ VariableDeclarator : { array : true , object : true } } ,
You can’t perform that action at this time.
0 commit comments