-
Notifications
You must be signed in to change notification settings - Fork 0
/
.globalconfig
33 lines (23 loc) · 1.11 KB
/
.globalconfig
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
# Top level entry required to mark this as a global AnalyzerConfig file
is_global = true
#### Code analysis ####
# CA1002: Do not expose generic lists
dotnet_diagnostic.CA1002.severity = none
# CA1014: Mark assemblies with CLSCompliantAttribute
dotnet_diagnostic.CA1014.severity = none
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# CA1308: Normalize strings to uppercase
dotnet_diagnostic.CA1308.severity = none
# CA1309: Use ordinal string comparison
# Using ordinal string comparison is harmful when, for example, sorting lists to be displayed or serialized.
dotnet_diagnostic.CA1309.severity = none
# CA1716: Identifiers should not match keywords
dotnet_diagnostic.CA1716.severity = none
# CA1724: Type names should not match namespaces
dotnet_diagnostic.CA1724.severity = none
# CS1685: A predefined type is defined in multiple assemblies in the global alias
# This warning happens in one of our .NET Standard compatibility libraries, impossible to avoid.
dotnet_diagnostic.CS1685.severity = none
# CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1305.severity = none