chore: simplified off rules (#192)
This commit is contained in:
parent
84ae087ea0
commit
0a9c9b0384
@ -240,7 +240,7 @@ module.exports = {
|
||||
'no-debugger': 'error',
|
||||
'no-console': ['error', { allow: ['warn', 'error'] }],
|
||||
'no-cond-assign': ['error', 'always'],
|
||||
'func-call-spacing': ['off', 'never'],
|
||||
'func-call-spacing': 'off',
|
||||
'key-spacing': ['error', { beforeColon: false, afterColon: true }],
|
||||
'indent': ['error', 2, { SwitchCase: 1, VariableDeclarator: 1, outerIIFEBody: 1 }],
|
||||
'no-restricted-syntax': [
|
||||
@ -327,7 +327,7 @@ module.exports = {
|
||||
'array-callback-return': 'error',
|
||||
'block-scoped-var': 'error',
|
||||
'consistent-return': 'off',
|
||||
'complexity': ['off', 11],
|
||||
'complexity': 'off',
|
||||
'eqeqeq': ['error', 'smart'],
|
||||
'no-alert': 'warn',
|
||||
'no-case-declarations': 'error',
|
||||
|
Loading…
Reference in New Issue
Block a user