我只使用插件:@typescript-eslint/推荐的预设规则集,为什么我会收到 no-var 错误?

问题描述 投票:0回答:1

1、当我使用ESLint检查我的代码时,有一条针对var关键字的规则,规则名称为no-var。 no-var 规则是 ESLint 的原生规则。但是,我只使用“plugin:@typescript-eslint/recommended”预设规则集,并没有使用原生 ESLint 规则集。为什么我会收到 no-var 错误?

“请帮我解决上述问题。”

javascript eslint typescript-eslint
1个回答
0
投票

您需要在

no-var
.eslintrc.js
文件中专门添加一条规则来忽略
.eslintrc.json

将其添加到您的 eslint 文件中:

module.exports = {
  extends: [
    'plugin:@typescript-eslint/recommended',
  ],
  rules: {
    'no-var': 'off', // Disable the no-var rule
  },
};
© www.soinside.com 2019 - 2024. All rights reserved.