Skip to content

Commit 1c5b79f

Browse files
committed
Add TS version of the func-call-spacing rule
1 parent 8fc8601 commit 1c5b79f

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

index.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ module.exports = {
9191
'error',
9292
'^T$|^[A-Z][a-zA-Z]+$'
9393
],
94+
'func-call-spacing': 'off',
95+
'@typescript-eslint/func-call-spacing': [
96+
'error',
97+
'never'
98+
],
9499
indent: 'off',
95100
'@typescript-eslint/indent': [
96101
'error',
@@ -211,10 +216,11 @@ module.exports = {
211216

212217
'@typescript-eslint/restrict-plus-operands': 'error',
213218
'@typescript-eslint/require-array-sort-compare': 'error',
214-
215219
semi: 'off',
216-
'@typescript-eslint/semi': 'error',
217-
220+
'@typescript-eslint/semi': [
221+
'error',
222+
'always'
223+
],
218224
'@typescript-eslint/type-annotation-spacing': 'error',
219225

220226
// Disabled as it crashes on most code

0 commit comments

Comments
 (0)