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