-
Notifications
You must be signed in to change notification settings - Fork 5
/
.editorconfig
31 lines (21 loc) · 1018 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
[*.cs]
# RCS1061: Merge 'if' with nested 'if'.
dotnet_diagnostic.RCS1061.severity = none
# S1066: Collapsible "if" statements should be merged
dotnet_diagnostic.S1066.severity = none
# RCS1123: Add parentheses when necessary.
dotnet_diagnostic.RCS1123.severity = none
# IDE0090: Use 'new(...)'
dotnet_diagnostic.IDE0090.severity = none
# S1199: Nested code blocks should not be used
dotnet_diagnostic.S1199.severity = none
# RCS1003: Add braces to if-else (when expression spans over multiple lines).
dotnet_diagnostic.RCS1003.severity = none
# RCS1003: Add braces to if-else (when statement spans over multiple lines).
dotnet_diagnostic.RCS1001.severity = none
# S4035: Classes implementing "IEquatable<T>" should be sealed
dotnet_diagnostic.S4035.severity = none
# S4136: Method overloads should be grouped together
dotnet_diagnostic.S4136.severity = none
# S1206: "Equals(Object)" and "GetHashCode()" should be overridden in pairs
dotnet_diagnostic.S1206.severity = none