提问人:Metro Smurf 提问时间:11/2/2023 更新时间:11/2/2023 访问量:23
Visual Studio 2022 JSON 数组格式
Visual Studio 2022 JSON Array Formatting
问:
在 VS 2022(无扩展名)中,JSON 文件在数组大括号内使用空格进行格式化,即:
{
"key": [ "val1","val2","val3" ]
}
首选项是数组大括号的开始/结束之间没有间距,即:
{
"key": ["val1","val2","val3"]
}
我已经浏览了 VS 编辑器设置,似乎找不到与空间直接相关的任何内容。
我也尝试过使用.editorconfig:
[*.json]
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
array_element_spacing = false
关于如何让 VS 格式强制执行 json 数组的左大括号后和右大括号之前没有空格的规则的任何建议?理想情况下,使用 .editorconfig 设置。
答: 暂无答案
评论
array_element_spacing