@@ -33,29 +33,33 @@ module.exports = {
3333 } ] ,
3434 rules : {
3535 // 'push-with-multiple-arguments': 2,
36+ /*
3637 'no-unused-vars': [
3738 2,
3839 {
3940 vars: 'all',
4041 args: 'none'
4142 }
4243 ],
44+ */
45+ 'no-unused-vars' : 0 ,
46+ 'no-prototype-builtins' : 0 ,
4347 'new-cap' : [
4448 2 ,
4549 {
4650 capIsNew : false
4751 }
4852 ] ,
4953 semi : [ 'error' ] ,
50- indent : [ 'error' , 4 , { SwitchCase : 1 } ] ,
54+ // indent: ['error', 4, { SwitchCase: 1 }],
5155 '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']
6064 }
6165} ;
0 commit comments