visual studio 的 .edtorconfig 配置

2020-11-05 15:19发布

如何配置 .editorconfig,必须写 {}

if (n == null)
    throw new Exception("无效的数据");

规范为:

if (n == null)
{
    throw new Exception("无效的数据");
}

1条回答
祖国的老花朵
2楼-- · 2020-11-05 15:59

这个规则英文叫 "enforce usage of brackets for if-loop",.editorconfig 中没有对应的配置,详见 Prefer braces in if-loop - .editorConfig

查看更多
登录 后发表回答