From 0c1fc841e5213980bdeddfb9074c38448f1c4248 Mon Sep 17 00:00:00 2001 From: IvanZosimov Date: Wed, 1 Mar 2023 12:21:55 +0100 Subject: [PATCH] Update eslint config --- .eslintrc.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index a9ae96b..b20b0ad 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { '@typescript-eslint/no-require-imports': 'error', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/ban-ts-comment': [ 'error', { @@ -34,10 +35,10 @@ module.exports = { files: ['**/*{test,spec}.ts'], rules: { '@typescript-eslint/no-unused-vars': 'off', - '@typescript-eslint/no-empty-function': 'off', 'jest/no-standalone-expect': 'off', 'jest/no-conditional-expect': 'off', - 'no-magic-numbers': 'off', + 'no-console': 'off', + } } ],