Skip to content

Commit 779bb3a

Browse files
committed
fix(typescript): Disable func-call-spacing rule for .ts files
As recommended in https://typescript-eslint.io/rules/func-call-spacing (conflicts with Vue `defineEmits` type-based for example)
1 parent dbd8fbc commit 779bb3a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

configurations/typescript/rules/typescript.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ module.exports = {
186186

187187
// Require or disallow spacing between function identifiers and their invocations (autofixable)
188188
// https://typescript-eslint.io/rules/func-call-spacing
189+
'func-call-spacing': 'off',
189190
...extendFromBase('+func-call-spacing'),
190191

191192
// Enforce consistent indentation (autofixable)

0 commit comments

Comments
 (0)