chore: disable no-use-before-define rule

This commit is contained in:
Braks
2022-04-11 11:30:10 +02:00
parent fdde631f70
commit 676c984e07
+1
View File
@@ -8,6 +8,7 @@ const baseRules = {
}, },
], ],
'no-unused-expressions': ['off', { allowTernary: true }], 'no-unused-expressions': ['off', { allowTernary: true }],
'no-use-before-define': 0,
'chai-friendly/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }], 'chai-friendly/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'prettier/prettier': ['error', {}, { usePrettierrc: true }], 'prettier/prettier': ['error', {}, { usePrettierrc: true }],
} }