feat: include test directories in tsconfig files, disable no-explicit-any for test files, and document testing policy relaxations.

This commit is contained in:
2026-01-07 18:02:02 +00:00
parent 73c186fa74
commit 542a65c2a9
6 changed files with 18 additions and 8 deletions
+6
View File
@@ -76,6 +76,12 @@ export default tseslint.config(
'@typescript-eslint/no-empty-object-type': 'off',
},
},
{
files: ['**/test/**/*.ts', '**/*.test.ts', '**/*.spec.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
},
},
{
files: ['**/*.js', '**/*.mjs', '**/*.cjs'],
rules: {