Chore(Eslint): Dismiss exhaustive deps warning

Add config to dismiss exhaustive deps warning
This commit is contained in:
2024-04-26 09:56:36 +08:00
parent 0e354ca833
commit 296a45df00

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',
} }
} }