@@ -33,29 +33,33 @@ module.exports = {
33
33
} ] ,
34
34
rules : {
35
35
// 'push-with-multiple-arguments': 2,
36
+ /*
36
37
'no-unused-vars': [
37
38
2,
38
39
{
39
40
vars: 'all',
40
41
args: 'none'
41
42
}
42
43
],
44
+ */
45
+ 'no-unused-vars' : 0 ,
46
+ 'no-prototype-builtins' : 0 ,
43
47
'new-cap' : [
44
48
2 ,
45
49
{
46
50
capIsNew : false
47
51
}
48
52
] ,
49
53
semi : [ 'error' ] ,
50
- indent : [ 'error' , 4 , { SwitchCase : 1 } ] ,
54
+ // indent: ['error', 4, { SwitchCase: 1 }],
51
55
'prefer-const' : [ 'error' ] ,
52
- 'no-var' : [ 'error' ] ,
53
- 'prefer-destructuring' : [ 'error' ] ,
54
- 'object-shorthand' : [ 'error' ] ,
55
- 'object-curly-spacing' : [ 'error' , 'always' ] ,
56
- quotes : [ 'error' , 'single' ] ,
57
- 'quote-props' : [ 'error' , 'as-needed' ] ,
58
- 'brace-style' : [ 'error' , '1tbs' , { allowSingleLine : true } ] ,
59
- 'prefer-template' : [ 'error' ]
56
+ // 'no-var': ['error'],
57
+ // 'prefer-destructuring': ['error'],
58
+ // 'object-shorthand': ['error'],
59
+ // 'object-curly-spacing': ['error', 'always'],
60
+ // quotes: ['error', 'single'],
61
+ // 'quote-props': ['error', 'as-needed'],
62
+ 'brace-style' : [ 'error' , '1tbs' , { allowSingleLine : true } ]
63
+ // 'prefer-template': ['error']
60
64
}
61
65
} ;
0 commit comments