gpt4 book ai didi

visual-studio-code - 让 TSLint 遵循我在 JS 文件中的规则

转载 作者:行者123 更新时间:2023-12-04 17:44:18 25 4
gpt4 key购买 nike

我在 Visual Studio Code 中使用 TSLint(通过 TSLint 扩展),它非常适合 .ts文件。它也在 .js 上运行文件,这很好,但它不使用相同的规则,这很糟糕(对我来说)。我怎样才能让它使用相同的规则?

我的 tslint.json看起来像这样:

{
"extends": "tslint:latest",
"rules": {
"indent": [true, "tabs"],
// a bunch of others
}
}

例如,我在 .js 中收到此警告文件:
[tslint] space indentation expected (indent)

(当我为 "tabs" 设置规则时,它希望我使用空格缩进。)

最佳答案

您可以通过 jsRules 指定要在 JS 文件上运行的规则。您的属性(property) tslint.json file .例如:

{
"extends": "tslint:latest",
"rules": {
"indent": [true, "tabs"],
// a bunch of others
},
"jsRules": {
"indent": [true, "tabs"],
// a bunch more rules
}
}

如果您要扩展 tslint:latest , these are the default rules在撰写本文时,您将禁用或覆盖您不想要的规则。

关于visual-studio-code - 让 TSLint 遵循我在 JS 文件中的规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41397675/

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