From 90051200778ac9ef6c9792a42e3cb9043bd61661 Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Thu, 28 Jul 2022 14:35:23 +0800 Subject: [PATCH] =?UTF-8?q?style-no-unused-vars=E6=8F=90=E7=A4=BA=20warn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 901eb6e..9856735 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -64,14 +64,14 @@ module.exports = { '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-unused-vars': [ - 'error', + 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', }, ], 'no-unused-vars': [ - 'error', + 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_',