-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
49 lines (34 loc) · 1.45 KB
/
.editorconfig
File metadata and controls
49 lines (34 loc) · 1.45 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
48
49
root = true
[*]
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true
[*.cs]
# all await keyword should fallow with ConfigureAwait(false)
dotnet_diagnostic.ConfigureAwaitChecker.severity = warning
# SA1309: Field names should not begin with underscore
dotnet_diagnostic.SA1309.severity = none
# CA2225:Operator overloads have named alternates
dotnet_diagnostic.CA2225.severity = none
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none
# SA1633: File should have header
dotnet_diagnostic.SA1633.severity = none
# SA1200: Using directives should be placed correctly
dotnet_diagnostic.SA1200.severity = none
# SA1402: File may only contain a single type
dotnet_diagnostic.SA1402.severity = suggestion
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# SA0001: All diagnostics of XML documentation comments has been disabled due to the current project configuration.
dotnet_diagnostic.SA0001.severity = none
# SA1201: Elements should appear in the correct order
dotnet_diagnostic.SA1201.severity = none
# SA1204: Static elements should appear before instance elements
dotnet_diagnostic.SA1204.severity = none
# SA1413: Use trailing comma in multi-line initializers
dotnet_diagnostic.SA1413.severity = none
# SA1623: Property summary documentation should match accessors
dotnet_diagnostic.SA1623.severity = none
# S4136: All method overloads should be adjacent.
dotnet_diagnostic.S4136.severity = none