EditorConfig:为C#

时间:2018-11-09 19:24:25

标签: c# editorconfig

我想以一种方式配置我的EditorConfig(https://editorconfig.org/)配置,方法是在打开后和关闭前添加空格,从而将C#代码段var v = new Object(kind) {Id = num++};自动重新格式化为var v = new Object(kind) { Id = num++ };托架。我浏览了文档,还检查了C#手册(https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017#example-editorconfig-file),但还没有找到解决方案。

2 个答案:

答案 0 :(得分:0)

您可以define将其.editorconfig

它是为Visual Studio Comunity 2019设计的,但也应该在其他版本中工作。 另外,您需要配置VS,以将这些设置应用于“保存操作” see

答案 1 :(得分:0)

根据官方 .editorconfig 文档,请在此处查看.editorconfig complete list of properties 类似这样的操作:

.editorconfig

[*]
spaces_around_brackets = inside