From eb66126efadc4b0ce4842bd2cd255f1349b076b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=9A=D1=80?= =?UTF-8?q?=D1=8F=D0=B6=D0=B5=D0=B2?= Date: Tue, 9 Apr 2024 13:09:44 +0300 Subject: [PATCH] up eslint cfg --- .eslintrc.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 9b351cd3..8230ce4d 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -19,6 +19,8 @@ module.exports = { '@typescript-eslint/ban-ts-comment': 'off', '@typescript-eslint/ban-types': 'warn', '@typescript-eslint/no-empty-function': 'warn', + '@typescript-eslint/no-explicit-any': 'warn', + '@typescript-eslint/no-unused-vars': 'warn', 'no-empty': ['error', { allowEmptyCatch: true }], 'prefer-const': ['error', { destructuring: 'all' }], },