diff --git a/packages/eslint-config-basic/index.js b/packages/eslint-config-basic/index.js index e3eb686ce2..6339632acb 100644 --- a/packages/eslint-config-basic/index.js +++ b/packages/eslint-config-basic/index.js @@ -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',