如何配置 .editorconfig,必须写 {}
if (n == null)
throw new Exception("无效的数据");
规范为:
if (n == null)
{
throw new Exception("无效的数据");
}
标签:
.edtorconfig
这个规则英文叫 "enforce usage of brackets for if-loop",.editorconfig 中没有对应的配置,详见 Prefer braces in if-loop - .editorConfig