Chore(Eslint): Dismiss exhaustive deps warning

Add config to dismiss exhaustive deps warning
This commit is contained in:
2024-04-30 17:11:43 +08:00
parent cd1802b5d6
commit 71faca682e

View File

@@ -34,6 +34,7 @@ module.exports = {
'warn', 'warn',
{ allowConstantExport: true } { allowConstantExport: true }
], ],
'@typescript-eslint/no-non-null-assertion': 'off' '@typescript-eslint/no-non-null-assertion': 'off',
'react-hooks/exhaustive-deps': 'off',
} }
} }