diff --git a/app/eslint.config.mjs b/app/eslint.config.mjs index b85bc40..ae3a06f 100644 --- a/app/eslint.config.mjs +++ b/app/eslint.config.mjs @@ -104,4 +104,11 @@ export default defineConfig([ '@typescript-eslint/no-non-null-assertion': 'warn', }, }, + // Override configuration for test files + { + files: ['**/*.test.ts', '**/*.test.tsx'], + rules: { + '@typescript-eslint/no-non-null-assertion': 'off', + }, + }, ]);