From e3a190e94c034d3181bba2ff2cb393d9204b8f7d Mon Sep 17 00:00:00 2001 From: chuan_wuhao <443547225@qq.com> Date: Fri, 11 Nov 2022 17:01:22 +0800 Subject: [PATCH] =?UTF-8?q?eslint=E9=85=8D=E7=BD=AE=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.cjs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 9a3b7942..1e3738eb 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -86,7 +86,14 @@ module.exports = { 'no-sparse-arrays': 2, // 禁止稀疏数组 'no-trailing-spaces': 1, // 一行结束后面不要有空格 'no-unreachable': 2, // 禁止有无法执行的代码 - 'no-unused-expressions': 2, // 禁止无用的表达式 + 'no-unused-expressions': [ + 'error', + { + allowShortCircuit: true, + allowTernary: true, + allowTaggedTemplates: true, + }, + ], // 禁止无用的表达式 'no-use-before-define': 2, // 禁止定义前使用 'no-useless-call': 2, // 禁止不必要的 `call` 和 `apply` 'no-var': 'error', // 禁用 `var`