-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
30 lines (26 loc) · 1.04 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
root = true
[*]
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = crlf
[*.cs]
csharp_style_var_elsewhere = true:suggestion
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_prefer_braces = when_multiline:suggestion
csharp_style_expression_bodied_methods = true:suggestion
csharp_style_expression_bodied_constructors = false:suggestion
csharp_style_expression_bodied_operators = false:suggestion
csharp_style_expression_bodied_properties = true:suggestion
csharp_style_expression_bodied_indexers = true:suggestion
csharp_style_expression_bodied_accessors = true:suggestion
csharp_style_expression_bodied_lambdas = true:suggestion
csharp_style_expression_bodied_local_functions = false:suggestion
csharp_new_line_before_open_brace = all
csharp_style_unused_value_assignment_preference = unused_local_variable:suggestion
[*.{cs,vb}]
indent_size = 4
tab_width = 4
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = none