ESLint解析错误:onSubmit函数后等号上的意外标记

时间:2018-03-03 15:01:17

标签: reactjs eslint

我在找到等号=上的错误时遇到了问题。 我使用了eslint推荐的设置并尝试使用experimentalobjectrestspread从这里的另一个答案中纠正问题。

错误仍然存​​在。

这是我的eslint文件。

{
"extends": "eslint:recommended",
"parserOptions": {
    "sourceType": "module",
    "ecmaVersion": 6,
    "ecmaFeatures": {
        "jsx": true,
        "experimentalObjectRestSpread": true
    }
},
"env": {
    "node": true,
    "browser": true,
    "es6": true
},
"rules": {
    "no-console": "off",
    "no-unused-vars": "off"
}

}

错误的代码(仅在onSubmit之后的第一个等于

export class AddExp extends React.Component {
    onSubmit = (expense) => {
        this.props.addExpense(expense);
        this.props.history.push('/');
    };

0 个答案:

没有答案