作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 .eslintrc
,每当我使用 aribnb
和/或 airplus
扩展检查我的项目时,我都会收到以下错误:
// .eslintrc
{
"parser": "babel-eslint",
"rules": {
"id-length": 0,
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"no-duplicate-case": 1,
"no-else-return": 0,
"react/sort-comp": [
1,
{}
],
"no-undef": 1,
"no-unused-vars": [
1,
{
"args": "none",
"argsIgnorePattern": "store|action|next"
}
],
"object-curly-spacing": [
1,
"always"
],
"react/no-did-mount-set-state": [
1
]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"globals": {
"_": true,
"__ENV__": true
},
"extends": [
"airbnb",
"airplus"
],
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}
...以及错误:
> esw webpack src tools
.../node_modules/eslint-config-airbnb/rules/react.js:
Configuration for rule "react/display-name" is invalid:
Value "data["0"].acceptTranspilerName" has additional properties.
Referenced from: airbnb
Referenced from: airplus
Referenced from: /.../.eslintrc
Error: /.../node_modules/eslint-config-airbnb/rules/react.js:
Configuration for rule "react/display-name" is invalid:
Value "data["0"].acceptTranspilerName" has additional properties.
Referenced from: airbnb
Referenced from: airplus
Referenced from: .../.eslintrc
at validateRuleOptions (.../node_modules/eslint/lib/config/config-validator.js:116:15)
at .../node_modules/eslint/lib/config/config-validator.js:163:13
...
最佳答案
npm install
npm info "eslint-config-airbnb-base@latest" peerDependencies
npm install -g install-peerdeps
install-peerdeps --dev eslint-config-airbnb-base
将 "extends": "airbnb-base"添加到 .eslintrc 文件。最后,SUCCESS eslint-config-airbnb-base及其peerDeps安装成功。
关于node.js - .eslintrc 扩展爱彼迎配置时抛出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38087660/
我有一个 C# 程序经常失败。没关系,我已经创建了程序,它是我的 child ,无论如何我都喜欢它。作为一种支持,我决定围绕它编写一个 AutoHotKey 包装器,它会自动重新启动程序,直到它没有错
我需要开发一个帖子投票系统。每个用户都可以通过点击拇指图标来喜欢一个帖子,通过点击壁炉图标来喜欢一个帖子,将来也许我有一个明星系统作为替代方案。 我正在寻找更好的解决方案来实现这个系统,目前,我有两种
我花了几个小时彻底修改标准 标记,现在我停留在最后一步,即动画。我已经尝试了几乎所有的东西,但可以让它正常工作。如果有人可以在这里帮助我,我将不胜感激。 理想情况下,我希望 Twitter 小鸟移动并
我是一名优秀的程序员,十分优秀!