-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.editorconfig
39 lines (33 loc) · 1.27 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
34
35
36
37
38
39
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{sln,csproj}]
end_of_line = crlf
charset = utf-8-bom
[*.sln]
indent_style = tab
[*.csproj]
indent_style = space
indent_size = 2
[*.cs]
indent_size = 4
csharp_style_var_elsewhere = false:none
csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = false:suggestion
csharp_prefer_braces = when_multiline:suggestion
csharp_style_expression_bodied_methods = when_on_single_line:suggestion
csharp_style_expression_bodied_constructors = when_on_single_line:suggestion
csharp_style_expression_bodied_operators = when_on_single_line:suggestion
csharp_style_expression_bodied_properties = when_on_single_line:suggestion
csharp_style_expression_bodied_indexers = when_on_single_line:suggestion
csharp_style_expression_bodied_accessors = when_on_single_line:suggestion
csharp_style_expression_bodied_lambdas = when_on_single_line:suggestion
csharp_style_expression_bodied_local_functions = when_on_single_line:suggestion
csharp_new_line_before_open_brace = all
csharp_style_unused_value_assignment_preference = unused_local_variable:suggestion
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = none