如何配置 .editorconfig,必须写 {}
if (n == null)
throw new Exception("无效的数据");
规范为:
if (n == null)
{
throw new Exception("无效的数据");
}
这个规则英文叫 "enforce usage of brackets for if-loop",.editorconfig 中没有对应的配置,详见 Prefer braces in if-loop - .editorConfig
感谢 dudu大佬的解答。
我使用了更加暴力的方式
# Expression-level preferences
csharp_prefer_braces = true:suggestion