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 @@ -29,7 +29,7 @@ module.exports = {
29
29
rules : {
30
30
'@typescript-eslint/array-type' : [ 'error' , { default : 'array-simple' } ] ,
31
31
'@typescript-eslint/no-require-imports' : 'error' ,
32
- '@typescript-eslint/ban-ts-comment' : 'warn ' ,
32
+ '@typescript-eslint/ban-ts-comment' : 'error ' ,
33
33
'@typescript-eslint/ban-types' : 'error' ,
34
34
'@typescript-eslint/consistent-type-imports' : [
35
35
'error' ,
@@ -47,8 +47,12 @@ module.exports = {
47
47
'no-negated-condition' : 'error' ,
48
48
eqeqeq : [ 'error' , 'smart' ] ,
49
49
strict : 'error' ,
50
- 'prefer-template' : 'warn' ,
51
- 'object-shorthand' : [ 'warn' , 'always' , { avoidExplicitReturnArrows : true } ] ,
50
+ 'prefer-template' : 'error' ,
51
+ 'object-shorthand' : [
52
+ 'error' ,
53
+ 'always' ,
54
+ { avoidExplicitReturnArrows : true } ,
55
+ ] ,
52
56
'prefer-destructuring' : [
53
57
'error' ,
54
58
{ VariableDeclarator : { array : true , object : true } } ,
You can’t perform that action at this time.
0 commit comments