-
Notifications
You must be signed in to change notification settings - Fork 3
/
.globalconfig
250 lines (232 loc) · 20.4 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# Global AnalyzerConfig file
# See https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/configuration-files#global-analyzerconfig
is_global = true
### Miscellaneous code analysis configuration
# Relaxed rules related to IDisposable implementation - https://blog.stephencleary.com/2009/08/how-to-implement-idisposable-and.html
dotnet_diagnostic.CA1063.severity = none # CA1063: Implement IDisposable correctly
dotnet_diagnostic.CA1816.severity = none # CA1816: Call GC.SuppressFinalize correctly
# Disable CA1508 (false positive when a value is set inside a catch block)
dotnet_diagnostic.CA1508.severity = none # CA1508: Avoid dead conditional code
# Rules stricter than the default
dotnet_diagnostic.CA1001.severity = warning # CA1001: Types that own disposable fields should be disposable
dotnet_diagnostic.CA1047.severity = warning # CA1047: Do not declare protected members in sealed types
dotnet_diagnostic.CA1070.severity = warning # CA1070: Do not declare event fields as virtual
dotnet_diagnostic.CA2000.severity = warning # CA2000: Dispose objects before losing scope
dotnet_diagnostic.IDE0043.severity = error # IDE0043: Format string contains invalid placeholder
dotnet_diagnostic.IDE0076.severity = warning # IDE0076: Remove invalid global 'SuppressMessageAttribute'
dotnet_diagnostic.IDE0077.severity = warning # IDE0077: Avoid legacy format target in global 'SuppressMessageAttribute'
# Miscellaneous relaxations
dotnet_diagnostic.CA1000.severity = none # CA1000: Do not declare static members on generic types
dotnet_diagnostic.CA1032.severity = suggestion # CA1032: Implement standard exception constructors
dotnet_diagnostic.CA1303.severity = none # CA1303: Do not pass literals as localized parameters
# Miscellaneous configuration
dotnet_code_quality.CA1303.use_naming_heuristic = false # Don't raise CA1303 just because a parameter name contains Text, Message, or Caption.
dotnet_code_quality.CA1062.exclude_extension_method_this_parameter = true # Extension methods: null check may be skipped on "this" parameter.
dotnet_code_quality.CA1062.null_check_validation_methods = System.String.IsNullOrEmpty|System.String.IsNullOrWhiteSpace
dotnet_code_quality.dispose_ownership_transfer_at_constructor = true # Disposables passed to a constructor must be disposed by the constructed object.
### StyleCop Analyzers rules
# StyleCop Analyzers - Special rules
dotnet_diagnostic.SA0001.severity = warning # XML comment analysis disabled
dotnet_diagnostic.SA0002.severity = warning # Invalid settings file
# StyleCop Analyzers - Spacing rules
dotnet_diagnostic.SA1000.severity = warning # Keywords should be spaced correctly
dotnet_diagnostic.SA1001.severity = warning # Commas should be spaced correctly
dotnet_diagnostic.SA1002.severity = warning # Semicolons should be spaced correctly
dotnet_diagnostic.SA1003.severity = warning # Symbols should be spaced correctly
dotnet_diagnostic.SA1004.severity = warning # Documentation lines should begin with single space
dotnet_diagnostic.SA1005.severity = warning # Single line comments should begin with single space
dotnet_diagnostic.SA1006.severity = warning # Preprocessor keywords should not be preceded by space
dotnet_diagnostic.SA1007.severity = warning # Operator keyword should be followed by space
dotnet_diagnostic.SA1008.severity = warning # Opening parenthesis should be spaced correctly
dotnet_diagnostic.SA1009.severity = warning # Closing parenthesis should be spaced correctly
dotnet_diagnostic.SA1010.severity = warning # Opening square brackets should be spaced correctly
dotnet_diagnostic.SA1011.severity = warning # Closing square brackets should be spaced correctly
dotnet_diagnostic.SA1012.severity = warning # Opening braces should be spaced correctly
dotnet_diagnostic.SA1013.severity = warning # Closing braces should be spaced correctly
dotnet_diagnostic.SA1014.severity = warning # Opening generic brackets should be spaced correctly
dotnet_diagnostic.SA1015.severity = warning # Closing generic brackets should be spaced correctly
dotnet_diagnostic.SA1016.severity = warning # Opening attribute brackets should be spaced correctly
dotnet_diagnostic.SA1017.severity = warning # Closing attribute brackets should be spaced correctly
dotnet_diagnostic.SA1018.severity = warning # Nullable type symbols should be spaced correctly
dotnet_diagnostic.SA1019.severity = warning # Member access symbols should be spaced correctly
dotnet_diagnostic.SA1020.severity = warning # Increment decrement symbols should be spaced correctly
dotnet_diagnostic.SA1021.severity = warning # Negative signs should be spaced correctly
dotnet_diagnostic.SA1022.severity = warning # Positive signs should be spaced correctly
dotnet_diagnostic.SA1023.severity = warning # Dereference and access of symbols should be spaced correctly
dotnet_diagnostic.SA1024.severity = warning # Colons should be spaced correctly
dotnet_diagnostic.SA1025.severity = warning # Code should not contain multiple whitespace in a row
dotnet_diagnostic.SA1026.severity = warning # Code should not contain space after new or stackalloc keyword in implicitly typed array allocation
dotnet_diagnostic.SA1027.severity = warning # Use tabs correctly
dotnet_diagnostic.SA1028.severity = warning # Code should not contain trailing whitespace
# StyleCop Analyzers - Readability rules
dotnet_diagnostic.SA1100.severity = warning # Do not prefix calls with base unless local implementation exists
dotnet_diagnostic.SA1101.severity = none # Prefix local calls with this
dotnet_diagnostic.SX1101.severity = warning # Do not prefix local calls with this
dotnet_diagnostic.SA1102.severity = warning # Query clause should follow previous clause
dotnet_diagnostic.SA1103.severity = warning # Query clauses should be on separate lines or all on one line
dotnet_diagnostic.SA1104.severity = warning # Query clause should begin on new line when previous clause spans multiple lines
dotnet_diagnostic.SA1105.severity = warning # Query clauses spanning multiple lines should begin on own line
dotnet_diagnostic.SA1106.severity = warning # Code should not contain empty statements
dotnet_diagnostic.SA1107.severity = warning # Code should not contain multiple statements on one line
dotnet_diagnostic.SA1108.severity = warning # Block statements should not contain embedded comments
dotnet_diagnostic.SA1109.severity = warning # Block statements should not contain embedded regions
dotnet_diagnostic.SA1110.severity = warning # Opening parenthesis or bracket should be on declaration line
dotnet_diagnostic.SA1111.severity = warning # Closing parenthesis should be on line of last parameter
dotnet_diagnostic.SA1112.severity = warning # Closing parenthesis should be on line of opening parenthesis
dotnet_diagnostic.SA1113.severity = warning # Comma should be on the same line as previous parameter
dotnet_diagnostic.SA1114.severity = warning # Parameter list should follow declaration
dotnet_diagnostic.SA1115.severity = warning # Parameter should follow comma
dotnet_diagnostic.SA1116.severity = warning # Split parameters should start on line after declaration
dotnet_diagnostic.SA1117.severity = warning # Parameters should be on same line or separate lines
dotnet_diagnostic.SA1118.severity = warning # Parameter should not span multiple lines
dotnet_diagnostic.SA1120.severity = warning # Comments should contain text
dotnet_diagnostic.SA1121.severity = warning # Use built-in type alias
dotnet_diagnostic.SA1122.severity = warning # Use string.Empty for empty strings
dotnet_diagnostic.SA1123.severity = warning # Do not place regions within elements
dotnet_diagnostic.SA1124.severity = warning # Do not use regions
dotnet_diagnostic.SA1125.severity = warning # Use shorthand for nullable types
dotnet_diagnostic.SA1126.severity = warning # Prefix calls correctly
dotnet_diagnostic.SA1127.severity = warning # Generic type constraints should be on their own line
dotnet_diagnostic.SA1128.severity = warning # Put constructor initializers on their own line
dotnet_diagnostic.SA1129.severity = warning # Do not use default value type constructor
dotnet_diagnostic.SA1130.severity = warning # Use lambda syntax
dotnet_diagnostic.SA1131.severity = warning # Use readable conditions
dotnet_diagnostic.SA1132.severity = warning # Do not combine fields
dotnet_diagnostic.SA1133.severity = warning # Do not combine attributes
dotnet_diagnostic.SA1134.severity = warning # Attributes should not share line
dotnet_diagnostic.SA1135.severity = warning # Using directives should be qualified
dotnet_diagnostic.SA1136.severity = warning # Enum values should be on separate lines
dotnet_diagnostic.SA1137.severity = warning # Elements should have the same indentation
dotnet_diagnostic.SA1139.severity = warning # Use literal suffix notation instead of casting
# StyleCop Analyzers - Ordering rules
dotnet_diagnostic.SA1200.severity = warning # Using directives should be placed correctly
dotnet_diagnostic.SA1201.severity = warning # Elements should appear in the correct order
dotnet_diagnostic.SA1202.severity = warning # Elements should be ordered by access
dotnet_diagnostic.SA1203.severity = warning # Constants should appear before fields
dotnet_diagnostic.SA1204.severity = warning # Static elements should appear before instance elements
dotnet_diagnostic.SA1205.severity = none # Partial elements should declare access
dotnet_diagnostic.SA1206.severity = warning # Declaration keywords should follow order
dotnet_diagnostic.SA1207.severity = warning # Protected should come before internal
dotnet_diagnostic.SA1208.severity = warning # System using directives should be placed before other using directives
dotnet_diagnostic.SA1209.severity = warning # Using alias directives should be placed after other using directives
dotnet_diagnostic.SA1210.severity = warning # Using directives should be ordered alphabetically by namespace
dotnet_diagnostic.SA1211.severity = warning # Using alias directives should be ordered alphabetically by alias name
dotnet_diagnostic.SA1212.severity = warning # Property accessors should follow order
dotnet_diagnostic.SA1213.severity = warning # Event accessors should follow order
dotnet_diagnostic.SA1214.severity = warning # Readonly fields should appear before non-readonly fields
dotnet_diagnostic.SA1216.severity = warning # Using static directives should be placed at the correct location
dotnet_diagnostic.SA1217.severity = warning # Using static directives should be ordered alphabetically
# StyleCop Analyzers - Naming rules
dotnet_diagnostic.SA1300.severity = warning # Element should begin with upper-case letter
dotnet_diagnostic.SA1301.severity = warning # Element should begin with lower-case letter
dotnet_diagnostic.SA1302.severity = warning # Interface names should begin with I
dotnet_diagnostic.SA1303.severity = warning # Const field names should begin with upper-case letter
dotnet_diagnostic.SA1304.severity = warning # Non-private readonly fields should begin with upper-case letter
dotnet_diagnostic.SA1305.severity = none # Field names should not use Hungarian notation
dotnet_diagnostic.SA1306.severity = warning # Field names should begin with lower-case letter
dotnet_diagnostic.SA1307.severity = warning # Accessible fields should begin with upper-case letter
dotnet_diagnostic.SA1308.severity = warning # Variable names should not be prefixed
dotnet_diagnostic.SA1309.severity = none # Private instance field names should not begin with underscore
dotnet_diagnostic.SX1309.severity = warning # Private instance field names should begin with underscore
dotnet_diagnostic.SX1309S.severity = none # Static field names should begin with underscore
dotnet_diagnostic.SA1310.severity = warning # Field names should not contain underscore
dotnet_diagnostic.SA1311.severity = warning # Static readonly fields should begin with upper-case letter
dotnet_diagnostic.SA1312.severity = warning # Variable names should begin with lower-case letter
dotnet_diagnostic.SA1313.severity = warning # Parameter names should begin with lower-case letter
dotnet_diagnostic.SA1314.severity = warning # Type parameter names should begin with T
# StyleCop Analyzers - Maintainability rules
dotnet_diagnostic.SA1119.severity = warning # Statement should not use unnecessary parenthesis
dotnet_diagnostic.SA1400.severity = warning # Access modifier should be declared
dotnet_diagnostic.SA1401.severity = warning # Fields should be private
dotnet_diagnostic.SA1402.severity = warning # File may only contain a single type
dotnet_diagnostic.SA1403.severity = warning # File may only contain a single namespace
dotnet_diagnostic.SA1404.severity = warning # Code analysis suppression should have justification
dotnet_diagnostic.SA1405.severity = warning # Debug.Assert should provide message text
dotnet_diagnostic.SA1406.severity = warning # Debug.Fail should provide message text
dotnet_diagnostic.SA1407.severity = none # Arithmetic expressions should declare precedence
dotnet_diagnostic.SA1408.severity = warning # Conditional expressions should declare precedence
dotnet_diagnostic.SA1409.severity = none # Remove unnecessary code
dotnet_diagnostic.SA1410.severity = warning # Remove delegate parenthesis when possible
dotnet_diagnostic.SA1411.severity = warning # Attribute constructor should not use unnecessary parenthesis
dotnet_diagnostic.SA1412.severity = warning # Store files as UTF-8 with byte order mark
dotnet_diagnostic.SA1413.severity = warning # Use trailing comma in multi-line initializers
# StyleCop Analyzers - Layout rules
dotnet_diagnostic.SA1500.severity = warning # Braces for multi-line statements should not share line
dotnet_diagnostic.SA1501.severity = warning # Statement should not be on a single line
dotnet_diagnostic.SA1502.severity = warning # Element should not be on a single line
dotnet_diagnostic.SA1503.severity = warning # Braces should not be omitted
dotnet_diagnostic.SA1504.severity = warning # All accessors should be single-line or multi-line
dotnet_diagnostic.SA1505.severity = warning # Opening braces should not be followed by blank line
dotnet_diagnostic.SA1506.severity = warning # Element documentation headers should not be followed by blank line
dotnet_diagnostic.SA1507.severity = warning # Code should not contain multiple blank lines in a row
dotnet_diagnostic.SA1508.severity = warning # Closing braces should not be preceded by blank line
dotnet_diagnostic.SA1509.severity = warning # Opening braces should not be preceded by blank line
dotnet_diagnostic.SA1510.severity = warning # Chained statement blocks should not be preceded by blank line
dotnet_diagnostic.SA1511.severity = warning # While-do footer should not be preceded by blank line
dotnet_diagnostic.SA1512.severity = warning # Single-line comments should not be followed by blank line
dotnet_diagnostic.SA1513.severity = warning # Closing brace should be followed by blank line
dotnet_diagnostic.SA1514.severity = warning # Element documentation header should be preceded by blank line
dotnet_diagnostic.SA1515.severity = warning # Single-line comment should be preceded by blank line
dotnet_diagnostic.SA1516.severity = none # Elements should be separated by blank line
dotnet_diagnostic.SA1517.severity = warning # Code should not contain blank lines at start of file
dotnet_diagnostic.SA1518.severity = warning # Use line endings correctly at end of file
dotnet_diagnostic.SA1519.severity = warning # Braces should not be omitted from multi-line child statement
dotnet_diagnostic.SA1520.severity = warning # Use braces consistently
# StyleCop Analyzers - Documentation rules
dotnet_diagnostic.SA1600.severity = warning # Elements should be documented
dotnet_diagnostic.SA1601.severity = none # Partial elements should be documented
dotnet_diagnostic.SA1602.severity = warning # Enumeration items should be documented
dotnet_diagnostic.SA1603.severity = warning # Documentation should contain valid XML
dotnet_diagnostic.SA1604.severity = warning # Element documentation should have summary
dotnet_diagnostic.SA1605.severity = warning # Partial element documentation should have summary
dotnet_diagnostic.SA1606.severity = warning # Element documentation should have summary text
dotnet_diagnostic.SA1607.severity = warning # Partial element documentation should have summary text
dotnet_diagnostic.SA1608.severity = warning # Element documentation should not have default summary
dotnet_diagnostic.SA1609.severity = none # Property documentation should have value
dotnet_diagnostic.SA1610.severity = none # Property documentation should have value text
dotnet_diagnostic.SA1611.severity = warning # Element parameters should be documented
dotnet_diagnostic.SA1612.severity = warning # Element parameter documentation should match element parameters
dotnet_diagnostic.SA1613.severity = warning # Element parameter documentation should declare parameter name
dotnet_diagnostic.SA1614.severity = warning # Element parameter documentation should have text
dotnet_diagnostic.SA1615.severity = warning # Element return value should be documented
dotnet_diagnostic.SA1616.severity = warning # Element return value documentation should have text
dotnet_diagnostic.SA1617.severity = warning # Void return value should not be documented
dotnet_diagnostic.SA1618.severity = warning # Generic type parameters should be documented
dotnet_diagnostic.SA1619.severity = warning # Generic type parameters should be documented partial class
dotnet_diagnostic.SA1620.severity = warning # Generic type parameter documentation should match type parameters
dotnet_diagnostic.SA1621.severity = warning # Generic type parameter documentation should declare parameter name
dotnet_diagnostic.SA1622.severity = warning # Generic type parameter documentation should have text
dotnet_diagnostic.SA1623.severity = warning # Property summary documentation should match accessors
dotnet_diagnostic.SA1624.severity = warning # Property summary documentation should omit accessor with restricted access
dotnet_diagnostic.SA1625.severity = warning # Element documentation should not be copied and pasted
dotnet_diagnostic.SA1626.severity = warning # Single-line comments should not use documentation style slashes
dotnet_diagnostic.SA1627.severity = warning # Documentation text should not be empty
dotnet_diagnostic.SA1628.severity = warning # Documentation text should begin with a capital letter
dotnet_diagnostic.SA1629.severity = warning # Documentation text should end with a period
dotnet_diagnostic.SA1630.severity = warning # Documentation text should contain whitespace
dotnet_diagnostic.SA1631.severity = none # Documentation should meet character percentage
dotnet_diagnostic.SA1632.severity = none # Documentation text should meet minimum character length
dotnet_diagnostic.SA1633.severity = warning # File should have header
dotnet_diagnostic.SA1634.severity = warning # File header should show copyright
dotnet_diagnostic.SA1635.severity = warning # File header should have copyright text
dotnet_diagnostic.SA1636.severity = warning # File header copyright text should match
dotnet_diagnostic.SA1637.severity = warning # File header should contain file name
dotnet_diagnostic.SA1638.severity = warning # File header file name documentation should match file name
dotnet_diagnostic.SA1639.severity = warning # File header should have summary
dotnet_diagnostic.SA1640.severity = warning # File header should have valid company text
dotnet_diagnostic.SA1641.severity = warning # File header company name text should match
dotnet_diagnostic.SA1642.severity = warning # Constructor summary documentation should begin with standard text
dotnet_diagnostic.SA1643.severity = warning # Destructor summary documentation should begin with standard text
dotnet_diagnostic.SA1644.severity = warning # Documentation headers should not contain blank lines
dotnet_diagnostic.SA1645.severity = warning # Included documentation file does not exist
dotnet_diagnostic.SA1646.severity = warning # Included documentation XPath does not exist
dotnet_diagnostic.SA1647.severity = warning # Include node does not contain valid file and path
dotnet_diagnostic.SA1648.severity = warning # Inheritdoc should be used with inheriting class
dotnet_diagnostic.SA1649.severity = warning # File name should match first type name
dotnet_diagnostic.SA1650.severity = warning # Element documentation should be spelled correctly
dotnet_diagnostic.SA1651.severity = warning # Do not use placeholder elements
# Suppress some annoying IDE messages
dotnet_diagnostic.IDE0040.severity = none # Accessibility modifiers required - has confusing rules and is a dupe of SA1400.
dotnet_diagnostic.IDE0079.severity = none # Remove unnecessary suppression - apparently VS (as of v17.3.0) deems way too much stuff "unnecessary".
dotnet_diagnostic.IDE0290.severity = none # Use primary constructor - No. Just no.
# Solution-specific overrides