Update upstream

This commit is contained in:
Alex
2023-11-06 21:34:20 -05:00
parent 9352bf6baf
commit d5f4de03d6
4 changed files with 9 additions and 35 deletions

View File

@ -88,6 +88,7 @@ export function extendConfig({
...eslintRules,
...typescriptRules,
'import/export': off,
'import/no-duplicates': error,
'import/order': [error, { groups: ['builtin', 'external'] }],
...(hasReact && {
...reactRules,

View File

@ -9,7 +9,7 @@ export const eslintRules: Partial<EslintRules> = {
'no-console': warn,
'no-constant-condition': [error, { checkLoops: false }],
'no-debugger': warn,
'no-duplicate-imports': error,
'no-duplicate-imports': off,
'no-empty': [error, { allowEmptyCatch: true }],
'no-inner-declarations': off,
'no-lonely-if': error,