feat(typert): add compiler-independent type pipeline

This commit is contained in:
imccyu
2026-07-28 23:47:57 +08:00
parent 2b7bc0c195
commit f773985e71
84 changed files with 15378 additions and 15 deletions

View File

@@ -185,4 +185,17 @@ export default tseslint.config(
'@stylistic/max-len': ['error', { code: 140, ignoreUrls: true, ignoreStrings: true, ignoreTemplateLiterals: true }],
},
},
// TypeGraph coverage must retain source-authored syntax that production lint rules forbid.
{
files: ['packages/typert/generator/tests/fixtures/type-model/packages/host/src/models.ts'],
rules: {
'@stylistic/quotes': 'off',
'@typescript-eslint/no-deprecated': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-mixed-enums': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unnecessary-type-parameters': 'off',
},
},
)