File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,21 @@ module.exports = {
2222 semi : [ 'error' , 'never' ] ,
2323 'no-prototype-builtins' : 'off' ,
2424 'class-methods-use-this' : 'off' ,
25+ 'template-curly-spacing' : 'off' ,
2526 'arrow-parens' : [ 'error' , 'as-needed' ] ,
2627 'comma-dangle' : [ 'error' , 'only-multiline' ] ,
2728 'no-param-reassign' : [ 'error' , { props : false } ] ,
2829 'no-console' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
2930 'no-debugger' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
3031 'import/no-extraneous-dependencies' : [ 'error' , { devDependencies : [ 'script/**/*.js' ] } ] ,
32+ indent : [
33+ 'warn' ,
34+ 2 ,
35+ {
36+ ignoredNodes : [ 'TemplateLiteral' ] ,
37+ SwitchCase : 1 ,
38+ } ,
39+ ] ,
3140 'object-curly-newline' : [
3241 'error' ,
3342 {
You can’t perform that action at this time.
0 commit comments