root = true

[*.cs]
charset = utf-8
indent_style = space
indent_size = 4
max_line_length = 100
# 强制所有控制语句(if/else/for/foreach/while 等)必须使用大括号
csharp_prefer_braces = true:warning
csharp_style_var_for_built_in_types = true:warning
# 命名空间使用文件作用域
csharp_style_namespace_declarations = file_scoped:warning
# [约定] 禁止在代码行末尾添加行内注释(trailing inline comment)
# 注释必须另起独立一行,无内置 Roslyn 规则——由 Code Review 检查

[*.js]
charset = utf-8
indent_style = space
indent_size = 4
评论加载中...