Adjust lint rules to avoid unnecessary warning. (#18970)

This commit is contained in:
Tommaso Sciortino
2026-02-13 09:30:28 -08:00
committed by GitHub
parent e1b9002b35
commit 3bed7bbe8d

View File

@@ -10,8 +10,6 @@ import tsParser from '@typescript-eslint/parser';
export default [
{
files: ['**/*.ts'],
},
{
plugins: {
'@typescript-eslint': typescriptEslint,
},
@@ -40,6 +38,13 @@ export default [
'no-throw-literal': 'warn',
semi: 'warn',
'@typescript-eslint/no-floating-promises': ['error'],
'@typescript-eslint/no-unsafe-type-assertion': 'error',
},
},
{
files: ['**/*.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-type-assertion': 'off',
},
},
];