-
Notifications
You must be signed in to change notification settings - Fork 256
/
.globalconfig
36 lines (33 loc) · 1.64 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
34
35
36
is_global = true
# IDE0055: Fix formatting
dotnet_diagnostic.IDE0055.severity = warning
dotnet_diagnostic.SA1101.severity = none
dotnet_diagnostic.SA1201.severity = none
dotnet_diagnostic.SA1202.severity = none
dotnet_diagnostic.SA1204.severity = none
dotnet_diagnostic.SA1308.severity = none
dotnet_diagnostic.SA1309.severity = none
dotnet_diagnostic.SA1311.severity = none
dotnet_diagnostic.SA1412.severity = warning
dotnet_diagnostic.SA1501.severity = none
dotnet_diagnostic.SA1600.severity = none
dotnet_diagnostic.SA1601.severity = none
dotnet_diagnostic.SA1629.severity = none
dotnet_diagnostic.SX1101.severity = warning
dotnet_diagnostic.SX1309.severity = warning
# DiagnosticId must be unique across analyzers: Many tests use similar analyzer instances
dotnet_diagnostic.RS1019.severity = none
# Enable analyzer release tracking: only used in this repository for testing
dotnet_diagnostic.RS2008.severity = none
# Prefer 'IsKind' for checking syntax kinds
dotnet_diagnostic.RS1034.severity = none
# Use 'SymbolEqualityComparer' when comparing symbols
dotnet_diagnostic.RS1024.severity = none
# Configure generated code analysis
dotnet_diagnostic.RS1025.severity = none
# Enable concurrent execution
dotnet_diagnostic.RS1026.severity = none
# The diagnostic title should not contain a period, nor any line return character, nor any leading or trailing whitespaces
dotnet_diagnostic.RS1031.severity = none
# The diagnostic message should not contain any line return character nor any leading or trailing whitespaces and should either be a single sentence without a trailing period or a multi-sentences with a trailing period
dotnet_diagnostic.RS1032.severity = none