-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
40 lines (29 loc) · 977 Bytes
/
.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
40
# All files
[*]
indent_style = space
# Configuration files
[*.config]
indent_size = 2
insert_final_newline = true
charset = utf-8-bom
[*.{cs,fsx}]
guidelines = 100 2px dotted black
# Code files
[*.cs]
indent_size = 4
insert_final_newline = true
charset = utf-8-bom
# CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
dotnet_diagnostic.CS8618.severity = warning
dotnet_analyzer_diagnostic.severity = error
# IDE0065: Misplaced using directive
csharp_using_directive_placement = outside_namespace:error
# IDE0045: Convert to conditional expression
dotnet_diagnostic.IDE0045.severity = silent
# IDE0046: Convert to conditional expression
dotnet_diagnostic.IDE0046.severity = silent
# IDE0051: Remove unused private members
dotnet_diagnostic.IDE0051.severity = silent
# IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = silent
csharp_style_namespace_declarations = file_scoped:warning