是否有任何方法可以更改美化(VsCode 扩展)配置的默认设置以缩进innerHTML

Rit*_*dev 4 json visual-studio-code

您好,我想知道是否有办法更改所有项目的 VsCode 中Beautify扩展的默认配置(使其默认)。我总是需要在项目的根目录中创建.jsonbeautifyrc文件,并在其中的给定代码下编写。

{
    "indent_inner_html": true
} 
Run Code Online (Sandbox Code Playgroud)

我希望所有项目都隐含此设置,而无需在每个项目中创建额外的.jsonbeautifyrc文件!

tHe*_*SiD 7

如果您希望美化的全局设置在您的所有项目中持续存在,您必须

  1. 为所有工作区/项目启用美化,即全局启用(这是默认完成的)
  2. 您需要将美化设置添加到您的settings.json文件中。不是settings.json您的项目文件夹中的。全球一号

全局设置

  1. 您需要beautify.config在该 json 文件中创建一个对象。
  2. 将所有美化设置复制粘贴到该对象中,如下所示
{
    "beautify.config": {
       "js": {
        "allowed_file_extensions": ["js", "jsonc", "jshintrc", "jsbeautifyrc"],
        "brace_style": "collapse", // [collapse|expand|end-expand|none] Put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line, or attempt to keep them where they are
        "break_chained_methods": false, // Break chained method calls across subsequent lines
        "e4x": false, // Pass E4X xml literals through untouched
        "end_with_newline": false, // End output with newline
        "indent_char": " ", // Indentation character
        "indent_level": 0, // Initial indentation level
        "indent_size": 2, // Indentation size
        "indent_with_tabs": false, // Indent with tabs, overrides `indent_size` and `indent_char`
        "jslint_happy": false, // If true, then jslint-stricter mode is enforced
        "keep_array_indentation": false, // Preserve array indentation
        "keep_function_indentation": false, // Preserve function indentation
        "max_preserve_newlines": 0, // Maximum number of line breaks to be preserved in one chunk (0 disables)
        "preserve_newlines": true, // Whether existing line breaks should be preserved
        "space_after_anon_function": false, // Should the space before an anonymous function's parens be added, "function()" vs "function ()"
        "space_before_conditional": true, // Should the space before conditional statement be added, "if(true)" vs "if (true)"
        "space_in_empty_paren": false, // Add padding spaces within empty paren, "f()" vs "f( )"
        "space_in_paren": false, // Add padding spaces within paren, ie. f( a, b )
        "unescape_strings": false, // Should printable characters in strings encoded in \xNN notation be unescaped, "example" vs "\x65\x78\x61\x6d\x70\x6c\x65"
        "wrap_line_length": 0 // Lines should wrap at next opportunity after this number of characters (0 disables)
       },
    },
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    }
}
Run Code Online (Sandbox Code Playgroud)

最后一行告诉 VSCode 使用 Beautify 格式化 JS。您可以向其中添加其他语言以及您的 beautify.config。

例子

美化settings.json