30

我目前正在 Node 12.14.1 上开发 API,并使用 Eslint 帮助我编写代码。不幸的是,它不允许我设置静态类属性,如下所示:

class AuthManager {
  static PROP = 'value'
}

给出以下错误:Parsing error: Unexpected token =eslint

JS 和 Node.js 已经支持静态类属性。
如何禁用此规则?

我还有以下.eslintrc.json文件:

{
  "env": {
      "es6": true,
      "node": true
  },
  "extends": "eslint:recommended",
  "globals": {
      "Atomics": "readonly",
      "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
      "ecmaVersion": 2018,
      "sourceType": "module"
  }
}
4

4 回答 4

39

ESLint 及其默认解析器目前不支持类字段语法。您可以通过将配置的解析器更改为babel-eslint.

npm install --save-dev babel-eslint
// eslintrc.json
{
  "parser": "babel-eslint",
  ...
}

Eslint 的默认解析器 Espree 不支持类字段,因为该语法当前处于第 3 阶段,并且决定在 Espree 中仅支持第 4 阶段的提案。

于 2020-02-29T11:05:49.947 回答
25

ESLint v8 现在原生支持静态类属性:https ://eslint.org/blog/2021/10/eslint-v8.0.0-released

parserOptions ecmaVersion 应设置为 13、2022 或“最新”以启用支持。

于 2021-10-14T18:43:56.437 回答
7

你需要安装@babel/eslint-parser

yarn add --dev @babel/eslint-parser

并在你.eslintrc.yml的例子中有解析器:

parser: "@babel/eslint-parser"
于 2021-01-31T21:21:49.103 回答
5

截至目前,我不得不使用这些配置

.eslintrc.js

module.exports = {
  env: {
    node: true,
    es6: true,
  },
  extends: [
    'airbnb-base',
  ],
  parser: '@babel/eslint-parser',
  parserOptions: {
    babelOptions: {
      configFile: './.babelrc',
    },
    ecmaVersion: 2018, // needed to support spread in objects
  },
  plugins: ['@babel'],
};

.babelrc

{
  "presets": ["@babel/env"],
  "plugins": [
    "@babel/plugin-syntax-class-properties"
  ]
}

我必须安装:

npm i -D @babel/preset-env
npm i -D @babel/eslint-parser
npm i -D @babel/eslint-plugin
npm i -D @babel/plugin-syntax-class-properties

请注意,@babel上面的@babel模块是 my中唯一的模块package.json

于 2021-02-05T10:43:38.787 回答