-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.editorconfig
28 lines (21 loc) · 1.01 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
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
indent_style = tab
charset = utf-8
# IDE0022: Use expression body for methods
dotnet_diagnostic.IDE0022.severity = silent
# IDE0021: Use expression body for constructors
dotnet_diagnostic.IDE0021.severity = silent
# IDE0023: Use expression body for operators
dotnet_diagnostic.IDE0023.severity = silent
# IDE0046: Convert to conditional expression
dotnet_style_prefer_conditional_expression_over_return = false : warning
# IDE0026: Use expression body for indexers
dotnet_diagnostic.IDE0026.severity = silent
[*.yml]
indent_style = space
indent_size = 2