下面的代码:

import React from 'react';
import { Link } from 'react-router';
import { View, NavBar } from 'amazeui-touch';

import * as Pages from '../components';

const {  Home, ...Components } = Pages;

我得到这个eslint错误:

7:16  error  Parsing error: Unexpected token .. Why?

这是我的eslint配置:

{
  "extends": "airbnb",
  "rules": {
    /* JSX */
    "react/prop-types": [1, {
      "ignore": ["className", "children", "location", "params", "location*"]
    }],
    "no-param-reassign": [0, {
      "props": false
    }],
    "prefer-rest-params": 1,
    "arrow-body-style": 0,
    "prefer-template": 0,
    "react/prefer-stateless-function": 1,
    "react/jsx-no-bind": [0, {
      "ignoreRefs": false,
      "allowArrowFunctions": false,
      "allowBind": true
    }],
  }
}

.... .... 有什么问题吗?


当前回答

ESLint 2。x实验性地支持ObjectRestSpread语法,您可以通过在.eslintrc: docs中添加以下内容来启用它

"parserOptions": {
  "ecmaVersion": 6,
  "ecmaFeatures": {
    "experimentalObjectRestSpread": true
  }
},

ESLint 1。X本身不支持扩散操作符,解决这个问题的一种方法是使用babel-eslint解析器。最新的安装和使用说明在项目自述中。

其他回答

我解决了这个问题 首先,使用npm安装babel-eslint

npm install babel-eslint --save-dev

其次,在.eslintrc文件中添加此配置

{
   "parser":"babel-eslint"
}

ESLint 2。x实验性地支持ObjectRestSpread语法,您可以通过在.eslintrc: docs中添加以下内容来启用它

"parserOptions": {
  "ecmaVersion": 6,
  "ecmaFeatures": {
    "experimentalObjectRestSpread": true
  }
},

ESLint 1。X本身不支持扩散操作符,解决这个问题的一种方法是使用babel-eslint解析器。最新的安装和使用说明在项目自述中。

在2021年2月,你可以使用这些值

ecmaVersion -设置为3,5(默认),6,7,8,9,10,11或12,以指定您想使用的ECMAScript语法版本。也可以设置为2015(与6相同)、2016(与7相同)、2017(与8相同)、2018(与9相同)、2019(与10相同)、2020(与11相同)或2021(与12相同)。

https://eslint.org/docs/user-guide/configuring/language-options#specifying-parser-options

只是为了记录,如果你正在使用eslint-plugin-vue,添加'parser': 'babel-eslint'的正确位置是在parserOptions param中。

  'parserOptions': {
    'parser': 'babel-eslint',
    'ecmaVersion': 2018,
    'sourceType': 'module'
  }

https://eslint.vuejs.org/user-guide/#faq

我通过在.eslintrc.json文件中设置这个来解决这个问题:

"extends": [
    ...,
    "plugin:prettier/recommended"
]