We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
func-call-spacing
1 parent 8fc8601 commit 1c5b79fCopy full SHA for 1c5b79f
index.js
@@ -91,6 +91,11 @@ module.exports = {
91
'error',
92
'^T$|^[A-Z][a-zA-Z]+$'
93
],
94
+ 'func-call-spacing': 'off',
95
+ '@typescript-eslint/func-call-spacing': [
96
+ 'error',
97
+ 'never'
98
+ ],
99
indent: 'off',
100
'@typescript-eslint/indent': [
101
@@ -211,10 +216,11 @@ module.exports = {
211
216
212
217
'@typescript-eslint/restrict-plus-operands': 'error',
213
218
'@typescript-eslint/require-array-sort-compare': 'error',
214
-
215
219
semi: 'off',
- '@typescript-eslint/semi': 'error',
220
+ '@typescript-eslint/semi': [
221
222
+ 'always'
223
224
'@typescript-eslint/type-annotation-spacing': 'error',
225
226
// Disabled as it crashes on most code
0 commit comments