-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
.globalconfig
33 lines (30 loc) · 1.44 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
is_global = true
# CA1014: Mark assemblies with CLSCompliant
dotnet_diagnostic.CA1014.severity = none
#############################################################################
# Below are warning suppressions for the Polyfill source-code only package. #
# Some of the warnings are enabled again in the .editorconfig for them to #
# take effect on SpreadCheetah's code. #
#############################################################################
# CA2201: Do not raise reserved exception types
dotnet_diagnostic.CA2201.severity = none
# EPS01: Struct can be made readonly
dotnet_diagnostic.EPS01.severity = none
# EPS12: Method can be made readonly
dotnet_diagnostic.EPS12.severity = none
# MA0006: Use String.Equals instead of equality operator
dotnet_diagnostic.MA0006.severity = none
# MA0015: Specify the parameter name in ArgumentException
dotnet_diagnostic.MA0015.severity = none
# MA0047: Declare types in namespaces
dotnet_diagnostic.MA0047.severity = none
# MA0048: File name must match type name
dotnet_diagnostic.MA0048.severity = none
# S1125: Boolean literals should not be redundant
dotnet_diagnostic.S1125.severity = none
# S3267: Loops should be simplified with "LINQ" expressions
dotnet_diagnostic.S3267.severity = none
# S3903: Types should be defined in named namespaces
dotnet_diagnostic.S3903.severity = none
# S4136: Method overloads should be grouped together
dotnet_diagnostic.S4136.severity = none