fix(backend): resolve ESLint errors for Jest config and test setup files

- Add allowDefaultProject for JS config files in eslint.config.mjs

- Add no-console: off for test setup files

- Fix async arrow function without await in jest-e2e.setup.ts

- Remove unused eslint-disable directives
This commit is contained in:
2026-03-28 12:56:04 +07:00
parent a2720e9dc9
commit e1773481e2
8 changed files with 219 additions and 28 deletions
+10 -1
View File
@@ -11,11 +11,20 @@ export default defineConfig({
setupFiles: ['./vitest.setup.ts'],
include: ['hooks/**/*.test.{ts,tsx}', 'lib/**/*.test.{ts,tsx}', 'components/**/*.test.{ts,tsx}'],
exclude: ['**/node_modules/**', '**/.ignored_node_modules/**', '**/.next/**', '**/dist/**'],
testTimeout: 30000,
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
include: ['hooks/**/*.ts', 'lib/**/*.ts', 'components/**/*.tsx'],
exclude: ['**/*.d.ts', '**/__tests__/**', '**/types/**'],
exclude: ['**/*.d.ts', '**/__tests__/**', '**/types/**', '**/*.test.{ts,tsx}'],
thresholds: {
global: {
branches: 70,
functions: 70,
lines: 70,
statements: 70,
},
},
},
},
resolve: {