-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
26 lines (22 loc) · 891 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
root = true;
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
end_of_line = lf
trim_trailing_whitespace = true
charset = utf-8
dotnet_style_predefined_type_for_member_access = false:suggestion
dotnet_style_readonly_field = false:silent
dotnet_style_object_initializer = false:silent
dotnet_style_collection_initializer = false:silent
dotnet_style_prefer_auto_properties = false:silent
dotnet_style_null_propagation = false:silent
dotnet_code_quality_unused_parameters = non_public:silent
csharp_prefer_simple_default_expression = false:silent
csharp_style_inlined_variable_declaration = false:silent
csharp_new_line_before_open_brace = none
dotnet_diagnostic.IDE0016.severity = silent
dotnet_diagnostic.IDE1006.severity = silent
dotnet_diagnostic.IDE0057.severity = silent # https://github.com/dotnet/roslyn/issues/47629
dotnet_diagnostic.IDE0090.severity = silent