chore(eslint): make @typescript-eslint/no-explicit-any an error

This commit is contained in:
Paul Chavard 2022-02-23 13:37:18 +01:00 committed by Pierre de La Morinerie
parent 7c8e97f084
commit 8ee6bdfac0

View file

@ -56,7 +56,8 @@ module.exports = {
rules: {
'prettier/prettier': 'error',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error'
'react-hooks/exhaustive-deps': 'error',
'@typescript-eslint/no-explicit-any': 'error'
}
}
]