gpt4 book ai didi

javascript - 如何防止美化扩展格式化内联 Javascript?

转载 作者:行者123 更新时间:2023-12-02 23:34:11 25 4
gpt4 key购买 nike

我希望 ESLint 扩展成为内联 Javascript 中唯一的格式化程序。美化只是把它搞砸了,我必须手动纠正它。

我已将这些行添加到我的 .jsbeautifyrc 文件中:

    "format.contentUnformatted": "script",
"format.unformatted": "script",

但它没有效果:Beautify 仍然格式化 html 文件中的每一行。我忽略了什么?

最佳答案

根据documentation它应该是这样的:

{
"unformatted": ["script"]
}

如果这不起作用,那么也许通过语言设置这可能会起作用。

You can control which file types, extensions, or specific file names should be beautified with the beautify.language setting.

{
"beautify.language": {
"js": {
"type": ["javascript", "json"],
"filename": [".jshintrc", ".jsbeautifyrc"]
// "ext": ["js", "json"]
// ^^ to set extensions to be beautified using the javascript beautifier
},
"css": ["css", "scss"],
"html": ["htm", "html"]
// ^^ providing just an array sets the VS Code file type
}
}

以上配置应仅对指定的 .js 文件启用格式化。

祝你好运。

关于javascript - 如何防止美化扩展格式化内联 Javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56351886/

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