Enable ESLint ban-ts-comment rule (#4350)

# Description of Changes
Enable ESLint [ban-ts-comment
rule](https://typescript-eslint.io/rules/ban-ts-comment/)
This commit is contained in:
James Brunton
2025-09-05 11:02:00 +01:00
committed by GitHub
parent cd1fc682ab
commit d558bb5fac
2 changed files with 2 additions and 3 deletions

View File

@@ -347,9 +347,9 @@ describe('useConvertParameters - Auto Detection & Smart Conversion', () => {
const malformedFiles: Array<{name: string}> = [
{ name: 'valid.pdf' },
// @ts-ignore - Testing runtime resilience
// @ts-expect-error - Testing runtime resilience
{ name: null },
// @ts-ignore
// @ts-expect-error - Testing runtime resilience
{ name: undefined }
];