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",
添加回答
舉報