We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4463c9f + 5584d66 commit 9ab14e5Copy full SHA for 9ab14e5
3 files changed
config/baseLintConfig.ts
@@ -58,6 +58,7 @@ export const eslintConfig = tseslint.config(
58
'@typescript-eslint/no-unused-vars': [
59
'warn',
60
{
61
+ 'argsIgnorePattern': '^_',
62
'caughtErrors': 'none'
63
}
64
],
@@ -343,7 +344,14 @@ export const eslintConfig = tseslint.config(
343
344
'stylistic/no-mixed-operators': 'warn',
345
'stylistic/no-mixed-spaces-and-tabs': 'warn',
346
'stylistic/no-multi-spaces': 'warn',
- 'stylistic/no-multiple-empty-lines': 'warn',
347
+ 'stylistic/no-multiple-empty-lines': [
348
+ 'warn',
349
+ {
350
+ 'max': 1,
351
+ 'maxBOF': 0,
352
+ 'maxEOF': 1
353
+ }
354
+ ],
355
'stylistic/no-tabs': 'warn',
356
'stylistic/no-trailing-spaces': 'warn',
357
'stylistic/no-whitespace-before-property': 'warn',
0 commit comments