ignore @ts-expect-error in pipeline

This commit is contained in:
JubaAzul 2025-01-15 11:08:17 -05:00
parent 470d856afc
commit d6774b300f

View file

@ -15,4 +15,12 @@ module.exports = {
{ allowConstantExport: true },
],
},
"overrides": [
{
"files": ["**/*.test.ts", "**/*.test.tsx"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
}
}
]
}