l***@haier.com
l***@haier.com
  • 发布:2021-03-09 17:10
  • 更新:2021-03-09 17:10
  • 阅读:615

#插件讨论# 【 eslint-js - IDE 】eslint-js 对扩展运算符... 报错怎么配置

分类:HBuilderX

我的.eslintrc.js配置如下:
//详细配置教程请参考:http://eslint.cn/docs/user-guide/configuring
module.exports = {
"plugins": [
"html"
],
"parser": "esprima",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"allowImportExportEverywhere": false
},
"rules": {
"camelcase": 0, //强制驼峰法命名,
"indent": [4, 2], //缩进风格
"id-match": 0, //命名检测
"init-declarations": 1, //声明时必须赋初值
"no-undef": 1, //不能有未定义的变量
"no-new-object": 2 //使用字面量语法创建对象
}
};

但对扩展运算符报错,要怎么配置呢?

2021-03-09 17:10 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复