gpt4 book ai didi

javascript - eslint - vscode 的可选链接错误

转载 作者:行者123 更新时间:2023-12-01 15:32:49 25 4
gpt4 key购买 nike

当我使用可选链时,我看到一条红色下划线,但代码运行良好,因为我在 Node 14 上

这是我的设置:

node 14.1.0
eslint "^6.8.0"

.eslintrc.js
module.exports = {
"env": {
"node": true
},
"extends": [
"eslint:recommended",
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"rules": {
},
}

enter image description here

最佳答案

您不再需要 @babel/eslint-parsereslint@^7.5现在支持可选链接。
运行以下命令来更新项目中的 eslint:
npm

npm install --save-dev eslint@^7.5
yarn add -D eslint@^7.5
然后,确保您的配置如下:
.eslintrc
{
"parserOptions": {
"ecmaVersion": 2020
}
}
.eslint.js
module.exports = {
"parserOptions": {
"ecmaVersion": 2020
}
}

https://eslint.org/blog/2020/07/eslint-v7.5.0-released#optional-chaining-support了解更多信息。

关于javascript - eslint - vscode 的可选链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61628947/

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