From 8ee6bdfac05c7ce75770aa706feb9323d7b43562 Mon Sep 17 00:00:00 2001 From: Paul Chavard Date: Wed, 23 Feb 2022 13:37:18 +0100 Subject: [PATCH] chore(eslint): make @typescript-eslint/no-explicit-any an error --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index cfd8886a9..cc5432980 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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' } } ]