-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.editorconfig
33 lines (30 loc) · 1.32 KB
/
.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
27
28
29
30
31
32
33
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = crlf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
dotnet_style_qualification_for_field=true:silent
dotnet_style_qualification_for_property=true:silent
dotnet_style_qualification_for_method=true:silent
dotnet_style_qualification_for_event=true:silent
csharp_style_var_for_built_in_types=true:silent
csharp_style_var_when_type_is_apparent=true:silent
csharp_style_var_elsewhere=true:silent
csharp_using_directive_placement = inside_namespace
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = none
csharp_style_expression_bodied_methods=when_on_single_line:silent
csharp_style_expression_bodied_properties=when_on_single_line:silent
csharp_style_expression_bodied_indexers=when_on_single_line:silent
csharp_style_expression_bodied_accessors=when_on_single_line:silent
csharp_style_expression_bodied_lambdas=when_on_single_line:silent
csharp_style_expression_bodied_local_functions=when_on_single_line:silent
csharp_style_expression_bodied_operators=when_on_single_line:silent
csharp_style_expression_bodied_constructors=when_on_single_line:silent
csharp_prefer_simple_using_statement=false:suggestion
# CA2254: Template should be a static expression
dotnet_diagnostic.CA2254.severity = none