1 回答
TA贡献1772条经验 获得超8个赞
似乎是eslint版本问题,我重新create-react-app,创建的项目eslint及其相关包的版本都是不同的,此时再用eslint-config-airbnb-base就正常了
之前的eslint相关包的版本
"eslint": "4.4.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
重新生成的项目中eslint相关包的版本
"eslint": "4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
添加回答
举报