From aa085e6807c49f9fe2ed54f2792b33104e3750f1 Mon Sep 17 00:00:00 2001 From: solufa Date: Sun, 28 Jan 2024 21:32:16 +0900 Subject: [PATCH] chore: add no-explicit-any rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6afc0f3..e6421a2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -37,6 +37,7 @@ module.exports = { '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-non-null-assertion': 'error', '@typescript-eslint/strict-boolean-expressions': 'error', + '@typescript-eslint/no-explicit-any': 'error', complexity: ['error', 5], 'max-depth': ['error', 2], 'max-nested-callbacks': ['error', 3],