我正在使用eslint v3.0.1和vim syntastic。由于某种原因,我无法对配置进行任何更改,从而删除此错误
config/routes.js|16 col 16 error| Parsing error: Unexpected token routes [javascript/eslint]
在
var routes = (
<Router>
<Route path='/' component={Main}>
</Route>
</Router>
);
module.exports routes;
我现在正在使用非常通用的.eslintrc
{
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"]
}
答案 0 :(得分:1)
最后一行不正确,您需要写module.exports = routes
。