gpt4 book ai didi

javascript - ESLint - 需要 let 或 const 而不是 var (no-var)

转载 作者:行者123 更新时间:2023-11-30 08:23:36 25 4
gpt4 key购买 nike

如何在ESlint上禁用不鼓励使用var并鼓励使用const或let的规则?

最佳答案

在您的 package.json(假设这是您正在使用的)中,包括:

"eslintConfig": {
"rules": {
"no-var": 0
}
}

no-var是规则,0 sets the rule to "off" .

如果您不使用 package.json,您可以在 .eslintrc.js 中设置相同的内容,或者在每个文件的基础上包含文件顶部的注释 /* eslint no-var: 0 */.

这一切都来自ESlint Configuration Documentation .

关于javascript - ESLint - 需要 let 或 const 而不是 var (no-var),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49525095/

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