-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.editorconfig
More file actions
44 lines (30 loc) · 1.41 KB
/
.editorconfig
File metadata and controls
44 lines (30 loc) · 1.41 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
[*.cs]
# Hide These
# SA1000: Keywords should be spaced correctly
dotnet_diagnostic.SA1000.severity = none
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# SA1117: The parameters should all be placed on the same line or each parameter should be placed on its own line.
dotnet_diagnostic.SA1117.severity = none
# SA1503: Braces should not be omitted.
dotnet_diagnostic.SA1503.severity = none
# SA1633: The file header is missing or not located at the top of the file.
dotnet_diagnostic.SA1633.severity = none
# Suggestion
# SE1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = suggestion
# Enforce These
# IDE0005: Using directive is unnecessary.
dotnet_diagnostic.IDE0005.severity = error
# SA1028: Code should not contain trailing whitespace.
dotnet_diagnostic.SA1028.severity = error
# SA1208: Using directive for '{0}' should appear before directive for '{1}'
dotnet_diagnostic.SA1208.severity = error
# SA1505: An opening brace should not be followed by a blank line.
dotnet_diagnostic.SA1505.severity = error
# SA1508: A closing brace should not be preceded by a blank line.
dotnet_diagnostic.SA1508.severity = error
# SA1507: Code should not contain multiple blank lines in a row
dotnet_diagnostic.SA1507.severity = error
# SE1516: Using directives should be separated by blank line.
dotnet_diagnostic.SA1516.severity = error