diff --git a/src/index.test.ts b/src/index.test.ts index 99b49cf8..df354110 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -35,6 +35,7 @@ test('export', (t): void => { camelcase: 'off', 'comma-spacing': 'off', 'default-param-last': 'off', + 'func-call-spacing': 'off', indent: 'off', 'no-array-constructor': 'off', 'no-dupe-class-members': 'off', @@ -66,6 +67,7 @@ test('export', (t): void => { allowTypedFunctionExpressions: true, allowDirectConstAssertionInArrowFunctions: true }], + '@typescript-eslint/func-call-spacing': ['error', 'never'], '@typescript-eslint/indent': ['error', 2, { SwitchCase: 1, VariableDeclarator: 1, diff --git a/src/index.ts b/src/index.ts index 22f70ca5..fefef24e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,7 @@ import { rules as standardRules } from 'eslint-config-standard/eslintrc.json' const equivalents = [ 'comma-spacing', 'brace-style', + 'func-call-spacing', 'indent', 'no-array-constructor', 'no-dupe-class-members',