mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-05-24 09:38:34 +00:00
Adjust lint rules to avoid unnecessary warning. (#18970)
This commit is contained in:
parent
e1b9002b35
commit
3bed7bbe8d
1 changed files with 7 additions and 2 deletions
|
|
@ -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',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue