-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
25 lines (17 loc) · 852 Bytes
/
.editorconfig
File metadata and controls
25 lines (17 loc) · 852 Bytes
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
[*.cs]
# CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = silent
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = silent
# CA1051: Do not declare visible instance fields
dotnet_diagnostic.CA1051.severity = silent
# CA1034: Nested types should not be visible
dotnet_diagnostic.CA1034.severity = silent
# Default severity for analyzer diagnostics with category 'Style'
dotnet_analyzer_diagnostic.category-Style.severity = silent
# Default severity for analyzer diagnostics with category 'Roslynator'
dotnet_analyzer_diagnostic.category-Roslynator.severity = silent
# HAA0502: Explicit new reference type allocation
dotnet_diagnostic.HAA0502.severity = silent
# HAA0401: Possible allocation of reference type enumerator
dotnet_diagnostic.HAA0401.severity = silent