Skip to content

Commit 086e081

Browse files
committed
build: temporarily disable @typescript-eslint/no-unnecessary-type-assertion
Disables the unnecessary type assertion lint rule across the repository to accommodate an upcoming typescript-eslint upgrade. The updated version introduces rule modifications that generate a significant volume of validation failures, which would block the upgrade process. Temporarily disabling the rule provides a path forward for the version bump, after which the codebase can be audited and the rule can be re-enabled incrementally.
1 parent d227e69 commit 086e081

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ export default [
213213
'@typescript-eslint/prefer-promise-reject-errors': 'off',
214214
'@typescript-eslint/only-throw-error': 'off',
215215
'@typescript-eslint/no-unsafe-function-type': 'off',
216+
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
216217
},
217218
},
218219
{

0 commit comments

Comments
 (0)