gpt4 book ai didi

reactjs - 执行 import React 时,总是在 Eslint (v 6.0.0) 中找到 'definition for rule ' no-useless-catch' was not found'

转载 作者:行者123 更新时间:2023-12-04 10:47:21 26 4
gpt4 key购买 nike

我试过谷歌这个,但到目前为止无济于事......

在标准的 React 项目中,每个组件通常都以 import React from 'react' 开头。 .对我来说,Eslint v6.0.0 配置为扩展:'standard', "eslint:recommended", "plugin:react/recommended"我总是在 vscode 中收到这个警告:
Definition for rule 'no-useless-catch' was not foundeslint(no-useless-catch)
.. 第一次 import在 javascript 文件中。

vscode screenshot

关于为什么会发生这种情况的任何想法?我不想禁用该规则,因为它看起来确实很有用,但是我如何配置 eslint 才不会在项目中的每个文件中都提示这个?

这是完整的 eslintrc 文件:

module.exports = {
env: {
browser: true,
es6: true
},
parser: 'babel-eslint',
extends: [
'standard',
"eslint:recommended",
"plugin:react/recommended"
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'react'
],
rules: {
"quotes": ["warn", "single"],
"indent": ["warn", "tab", { "ignoreComments": true }],
"no-tabs": 0,
"padded-blocks": 0,
"semi": ["warn", "never"],
"no-trailing-spaces": 0,
"spaced-comment": 0,
"no-multiple-empty-lines": 0,
"space-before-function-paren": 0,
"camelcase": 0,
"prefer-const": "warn",
"space-infix-ops": "warn",
"no-case-declarations": 0,

}
}

最佳答案

没关系,弄清楚...我使用的是 eslint 5.6 和 no-useless-catch规则直到 5.11 才引入,因此错误...

关于reactjs - 执行 import React 时,总是在 Eslint (v 6.0.0) 中找到 'definition for rule ' no-useless-catch' was not found',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59642297/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com