22 lines
677 B
INI
22 lines
677 B
INI
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
|
|
# IDE0130: 命名空间与文件夹结构不匹配
|
|
dotnet_style_namespace_match_folder = false
|
|
# CS4014: 由于此调用不会等待,因此在调用完成前将继续执行当前方法
|
|
dotnet_diagnostic.CS4014.severity = none
|
|
# CA1822: 将成员标记为 static
|
|
dotnet_diagnostic.CA1822.severity = none
|
|
|
|
# formating
|
|
csharp_new_line_before_open_brace = none
|
|
csharp_new_line_before_else = none
|
|
csharp_new_line_before_catch = none
|
|
csharp_new_line_before_finally = none
|
|
csharp_new_line_before_members_in_object_initializers = none
|
|
csharp_new_line_before_members_in_anonymous_types = none
|
|
csharp_new_line_between_query_expression_clauses = none
|
|
|