forked from noamyogev84/ConcurrentPriorityQueue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.globalconfig
85 lines (57 loc) · 2.49 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
is_global = true
indent_size = 4
indent_style = space
# SA1027: Use tabs correctly
dotnet_diagnostic.SA1027.severity = none
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = suggestion
# SA1502: Element should not be on a single line
dotnet_diagnostic.SA1502.severity = none
# SA1633: File should have header
dotnet_diagnostic.SA1633.severity = none
# SA1200: Using directives should be placed correctly
dotnet_diagnostic.SA1200.severity = none
# SA1309: Field names should not begin with underscore
dotnet_diagnostic.SA1309.severity = none
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# IDE0011: Add braces
csharp_prefer_braces = when_multiline
# IDE0008: Use explicit type
csharp_style_var_elsewhere = false
# IDE0008: Use explicit type
dotnet_diagnostic.IDE0008.severity = suggestion
# CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity = none
# CA1010: Generic interface should also be implemented
dotnet_diagnostic.CA1010.severity = suggestion
# SA1503: Braces should not be omitted
dotnet_diagnostic.SA1503.severity = none
# IDE0022: Use block body for methods
csharp_style_expression_bodied_methods = when_on_single_line
# IDE0058: Expression value is never used
csharp_style_unused_value_expression_statement_preference = unused_local_variable
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = suggestion
# SA1501: Statement should not be on a single line
dotnet_diagnostic.SA1501.severity = suggestion
# SA0001: XML analysis is disabled
dotnet_diagnostic.SA0001.severity = none
# IDE0090: Use 'new(...)'
dotnet_diagnostic.IDE0090.severity = suggestion
# IDE0130: Namespace does not match folder structure
dotnet_style_namespace_match_folder = false
# IDE0130: Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = suggestion
# CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = suggestion
# CA1816: Dispose methods should call SuppressFinalize
dotnet_diagnostic.CA1816.severity = suggestion
# CA1067: Override Object.Equals(object) when implementing IEquatable<T>
dotnet_diagnostic.CA1067.severity = suggestion
# CA1036: Override methods on comparable types
dotnet_diagnostic.CA1036.severity = suggestion
# CA1036: Override methods on comparable types
dotnet_diagnostic.VSTHRD200.severity = suggestion
# VSTHRD105: Avoid method overloads that assume TaskScheduler.Current
dotnet_diagnostic.VSTHRD105.severity = suggestion