如何配置ESLint以允许使用胖箭头类方法


72

Parsing error: Unexpected token =当我尝试整理Es6类时,ESLint引发错误。我缺少在eslint中启用胖箭头类方法的配置参数吗?

范例类别:

class App extends React.Component{
    ...
    handleClick = (evt) => {
        ...
    }
}

.eslint

{
  "ecmaFeatures": {
    "jsx": true,
    "modules":true,
    "arrowFunctions":true,
    "classes":true,
    "spread":true,

  },
  "env": {
    "browser": true,
    "node": true,
    "es6": true
  },
  "rules": {
    "strict": 0,
    "no-underscore-dangle": 0,
    "quotes": [
      2,
      "single"
    ],
  }
}

1
arrowFunctions你已经包括应覆盖它。这可能是不受支持的情况,错误或违反约定的样式
Paul S.

是ESLint引发错误还是转译器?
亨里克·安德森

1
您是否尝试过使用babel-eslint?
Brigand 2015年

这不是ES6类。这是一个实验性的ES7建议。
Bergi 2015年

是的,这是一个es7提案(国际海事组织,这显然是要加入的竞争者)。我把它babel-eslint当作棉短绒解决了。末端夹有babel解析器,代替了eslint。在感谢大家谁插话说。
CodeOcelot

Answers:



28

首次安装babel-eslint

npm i -D babel-eslint

然后将以下内容添加到您的.eslintrc.json文件中:

"parser": "babel-eslint"

我用了这个解决方案。仅在安装之前,我先运行npm -g ls | grep babel | grep eslint发现我已经在全局安装了模块,所以我只做.eslintrc。
Juan Lanus

8

根据我在错误消息中看到的内容 Parsing error: Unexpected token =看到的内容来看,它比解析器更像是一个解析器错误。

假设您将Babel用作JavaScript编译器/编译器和babel-eslintESLint解析器,则很有可能是Babel在抱怨语法而不是ESLint。

问题不在于箭头函数,而是更多的实验性(ES7 ??),我认为它被称为属性初始值设定项类实例字段(或两者都:))。

如果要使用此新语法/功能,则需要preset-stage-1在Babel中启用。该预设包括syntax-class-properties允许该语法的插件。

加起来:

  1. 安装babel预设:

    npm install babel-preset-stage-1
    
  2. 将此预设添加到您或您的查询字段中的预设列表(我想您已经在使用es2015react预设)中(如果您正在使用webpack)。.babelrcbabel-loader

    "presets": ["es2015", "stage-1", "react"]
    

6

首先安装以下插件:

npm i -D babel-eslint eslint-plugin-babel

然后将这些设置添加到您的eslint配置文件中:

.eslintrc.json

{
    "plugins": [ "babel" ],
    "parser": "babel-eslint",
    "rules": {
        "no-invalid-this": 0,
        "babel/no-invalid-this": 1,
    }
}

这样,您可以使用胖箭头类方法,而且您不会no-invalid-this从eslint中得到任何错误。

快乐鳕鱼



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.