我正在尝试在我的 React 项目中使用 Airbnb 的 Javascript 标准设置 linting,它使用 webpack。
根据评论更新了最新的软件包。
"babel-eslint": "^6.1.2",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jshint": "^2.9.2",
"jshint-loader": "^0.8.3",
"json-loader": "^0.5.4",
我的 webpack 配置中还有一个预加载器设置
preLoaders: [
{
test: /\.jsx?$/,
loaders: ['eslint'],
// define an include so we check just the files we need
include: PATHS.app
}
],
以下设置用于运行脚本
"lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --cache",
我还有一个.eslintrc
文件,其中包含以下内容
{
"extends": "airbnb",
"env": {
"node": true,
"es6": true
}
}
这给了我以下错误:
Configuration for rule "react/jsx-sort-props" is invalid:
Value "data["0"].shorthandLast" has additional properties.
如果我删除.eslintrc
我认为可能有冲突的文件,我会收到以下错误:
error Parsing error: The keyword 'const' is reserved
随后是一个导致任务退出的 npm 错误。