[chore] fix lint error

This commit is contained in:
MathieuG-P
2024-01-21 16:54:53 +01:00
parent b6ecaa3934
commit 792ad9d777
+6 -2
View File
@@ -46,8 +46,12 @@ module.exports = {
"react/prop-types": "off",
"import/no-cycle": "off",
"prefer-promise-reject-errors": "off",
"react/jsx-no-target-blank": "off"
"@typescript-eslint/ban-types": "off"
"react/jsx-no-target-blank": "off",
"@typescript-eslint/ban-types": ["error", {
types: {
Function: false,
}
}]
},
parserOptions: {
ecmaVersion: 2020,