2

我有 CRA,我想安装自定义 eslint (airbnb),但安装后会触发错误

未找到规则“jsx-a11y/img-has-alt”的警告定义 jsx-a11y/img-has-alt

包.json

...
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",

创建应用程序反应 - 3.10.10

.eslintrc

"extends": [
    "airbnb"
],
"plugins": [
    "import",
    "react",
    "jsx-a11y"
],
"env": {
    "browser": true,
    "node": true,
    "jest": true
},
"rules": {
    "comma-dangle": ["error", "never"],
    "jsx-a11y/img-has-alt": [0],
    "jsx-quotes": ["error", "prefer-single"],
    "no-confusing-arrow": [0],
    "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
    "react/jsx-no-bind": [0],
    "react/prop-types": [1],
    "react/require-default-props": [0]
}

编辑:npm 说 eslint-config-airbnb 需要 jsx-a11y v5.0.1

4

3 回答 3

2

我使用 CRA eslint 插件,当我安装 jsx-a11y 插件 5.0.3 时,我收到控制台警告:

“eslint-config-react-app@0.6.2”具有不正确的对等依赖关系“eslint-plugin-jsx-a11y@^2.0.0 || ^3.0.0 || ^4.0.0”。

以及您收到的相同警告。

我相信您需要降级到 4.0.0 版本。这仍然是“想要”的版本

在此处输入图像描述

于 2017-05-20T12:56:44.940 回答
0

如果您将规则声明从更改"jsx-a11y/img-has-alt": [0],"jsx-a11y/alt-text": [0],它将起作用。

https://cnpmjs.org/package/eslint-plugin-jsx-a11y

于 2020-04-17T20:19:09.267 回答
-1

您显然需要更新您的节点版本才能解决问题。

于 2017-05-20T14:28:39.573 回答