gpt4 book ai didi

javascript - 如何启用 ESLint classPrivateMethods 解析器插件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:40:24 24 4
gpt4 key购买 nike

我正在尝试将 @babel/plugin-proposal-private-methods 插件与 ESLint 一起使用,但是,任何使用新功能的代码都会导致此错误:

ESLint: Parsing error: This experimental syntax requires enabling the parser plugin: 'classPrivateMethods'

根据此错误消息,应该在何处启用此插件不是很明显,而且我找不到任何有关如何将“解析器插件”添加到我的 .eslintrc 的说明(如下所示)。

{
"parser": "babel-eslint",
"env": {
"browser": true,
"jquery": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"plugins": [
"react"
],
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"camelcase": 0,
"curly": 0,
"wrap-iife": [
2,
"any"
],
"linebreak-style": 2,
"comma-style": [
2,
"last"
],
"new-cap": 2,
"strict": [
2,
"function"
],
"no-undef": 2,
"no-unused-vars": 0,
"no-console": 0,
"react/prop-types": 0
}
}

如何启用这个解析器插件?

最佳答案

在 babel-eslint 仓库中有一个问题:https://github.com/babel/babel-eslint/pull/523

最近已解决并在 babel-eslint@11.0.0-beta.0 source

中发布了修复程序

一旦 babel-eslint@11.0.0 可用,您就可以升级,插件将从您的 Babel 配置文件加载。

// babel.config.js
module.exports = {
plugins: [
"@babel/plugin-proposal-private-methods"
]
};

关于javascript - 如何启用 ESLint classPrivateMethods 解析器插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53675785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com