-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
.editorconfig
28 lines (23 loc) · 1.45 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
root = true
[*]
indent_style = space
[*.cs]
tab_width = 4
indent_size = 4
insert_final_newline = true
end_of_line = crlf
csharp_style_namespace_declarations=file_scoped:warning
dotnet_diagnostic.SA1000.severity = none # SA1000: The keyword 'new' should be followed by space
dotnet_diagnostic.SA1101.severity = none # SA1101: Prefix local calls with this
dotnet_diagnostic.SA1200.severity = none # SA1200: Using directives should be placed correctly
dotnet_diagnostic.SA1502.severity = none # SA1502: Element should not be on a single line
# dotnet_diagnostic.SA1503.severity = none # SA1503: Braces should not be omitted
dotnet_diagnostic.SA1513.severity = none # SA1513: Closing brace should be followed by blank line
dotnet_diagnostic.SA1600.severity = none # SA1600: Elements should be documented
dotnet_diagnostic.SA1602.severity = none # SA1602: Enumeration items should be documented
dotnet_diagnostic.SA1629.severity = none # SA1629: Documentation text should end with a period
dotnet_diagnostic.SA1633.severity = none # SA1633: File should have header
dotnet_diagnostic.SA1201.severity = suggestion # SA1201: Elements should appear in the correct order
dotnet_diagnostic.SA1202.severity = suggestion # SA1202: Elements should be ordered by access
dotnet_diagnostic.SA1204.severity = suggestion # SA1204: Static elements should appear before instance elements
dotnet_diagnostic.SA1515.severity = suggestion # SA1515: Single-line comment should be preceded by blank line