From 312ffc386d9509f13f3227053f19f9393a1edae3 Mon Sep 17 00:00:00 2001 From: mesqueeb Date: Fri, 7 Jun 2024 13:55:03 +0900 Subject: [PATCH] lint: allow any with warning --- eslint.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 4500767..48adf62 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,3 +1,10 @@ import config from '@cycraft/eslint/config' -export default config +export default [ + ...config, + { + rules: { + '@typescript-eslint/no-explicit-any': 'warn', + }, + }, +]