-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.editorconfig
More file actions
47 lines (32 loc) · 1.23 KB
/
Copy path.editorconfig
File metadata and controls
47 lines (32 loc) · 1.23 KB
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
40
41
42
43
44
45
46
47
# To learn more about .editorconfig see https://aka.ms/editorconfigdocs
root = true
# All files
[*]
indent_style = tab
csharp_using_directive_placement = inside_namespace
# IDE0022: Use block body for methods
dotnet_diagnostic.IDE0022.severity = none
# IDE0045: Convert to conditional expression
dotnet_diagnostic.IDE0045.severity = none
# IDE0057: Use range operator
csharp_style_prefer_range_operator = true:silent
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = none
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = false:silent
# IDE0066: Convert switch statement to expression
csharp_style_prefer_switch_expression = false:silent
# CC0035: Ordering member inside this type.
dotnet_diagnostic.CC0035.severity = none
# CC0042: Invert the for loop counting.
dotnet_diagnostic.CC0042.severity = none
# CC0045: Regular string
dotnet_diagnostic.CC0045.severity = none
# CC0073: Add braces to switch sections.
dotnet_diagnostic.CC0073.severity = none
# CC0076: Split into nested if
dotnet_diagnostic.CC0076.severity = none
# CC0079: Change numeric literal expression
dotnet_diagnostic.CC0079.severity = none
# IDE0290: Use primary constructor
dotnet_diagnostic.IDE0290.severity = none