-
Notifications
You must be signed in to change notification settings - Fork 13
/
.editorconfig
412 lines (403 loc) · 33.2 KB
/
.editorconfig
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
root = true
[*]
indent_style = space
indent_size = 2
tab_width = 2
charset = utf-8-bom
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = crlf
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers = false
csharp_preferred_modifier_order = public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_space_after_cast = false
csharp_style_var_elsewhere = true:suggestion
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
dotnet_naming_rule.event_rule.severity = suggestion
dotnet_naming_rule.event_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.event_rule.symbols = event_symbols
dotnet_naming_rule.local_functions_rule.severity = suggestion
dotnet_naming_rule.local_functions_rule.style = lower_camel_case_style
dotnet_naming_rule.local_functions_rule.symbols = local_functions_symbols
dotnet_naming_rule.method_rule.severity = suggestion
dotnet_naming_rule.method_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.method_rule.symbols = method_symbols
dotnet_naming_rule.private_constants_rule.severity = suggestion
dotnet_naming_rule.private_constants_rule.style = upper_camel_case_style
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
dotnet_naming_rule.private_static_readonly_rule.severity = suggestion
dotnet_naming_rule.private_static_readonly_rule.style = upper_camel_case_style
dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols
dotnet_naming_rule.property_rule.severity = suggestion
dotnet_naming_rule.property_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.property_rule.symbols = property_symbols
dotnet_naming_style.lower_camel_case_style.capitalization = camel_case
dotnet_naming_style.upper_camel_case_style.capitalization = pascal_case
dotnet_naming_style.upper_camel_case_underscore_tolerant_style.capitalization = pascal_case
dotnet_naming_style.upper_camel_case_underscore_tolerant_style.word_separator = _
dotnet_naming_symbols.event_symbols.applicable_accessibilities = *
dotnet_naming_symbols.event_symbols.applicable_kinds = event
dotnet_naming_symbols.local_functions_symbols.applicable_accessibilities = *
dotnet_naming_symbols.local_functions_symbols.applicable_kinds = local_function
dotnet_naming_symbols.method_symbols.applicable_accessibilities = *
dotnet_naming_symbols.method_symbols.applicable_kinds = method
dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field
dotnet_naming_symbols.private_constants_symbols.required_modifiers = const
dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static,readonly
dotnet_naming_symbols.property_symbols.applicable_accessibilities = *
dotnet_naming_symbols.property_symbols.applicable_kinds = property
dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none
dotnet_style_parentheses_in_other_binary_operators = never_if_unnecessary:none
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
dotnet_style_qualification_for_event = false:suggestion
dotnet_style_qualification_for_field = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_property = false:suggestion
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
# ReSharper properties
resharper_arguments_literal = named
resharper_blank_lines_after_control_transfer_statements = 1
resharper_blank_lines_before_block_statements = 0
resharper_blank_lines_before_control_transfer_statements = 0
resharper_braces_for_using = not_required
resharper_braces_redundant = false
resharper_constructor_or_destructor_body = expression_body
resharper_csharp_insert_final_newline = true
resharper_csharp_naming_rule.event = AaBb
resharper_csharp_naming_rule.method = AaBb
resharper_csharp_naming_rule.method_property_event = AaBb_AaBb, _ + aaBb_AaBb, aaBb_AaBb
resharper_csharp_naming_rule.private_static_readonly = AaBb, _ + aaBb
resharper_csharp_naming_rule.property = AaBb
resharper_csharp_wrap_arguments_style = chop_if_long
resharper_csharp_wrap_lines = false
resharper_csharp_wrap_parameters_style = chop_if_long
resharper_css_insert_final_newline = true
resharper_html_insert_final_newline = true
resharper_indent_switch_labels = true
resharper_js_insert_final_newline = true
resharper_js_max_line_length = 180
resharper_js_quote_style = singlequoted
resharper_local_function_body = expression_body
resharper_max_formal_parameters_on_line = 5
resharper_max_invocation_arguments_on_line = 7
resharper_method_or_operator_body = expression_body
resharper_no_indent_inside_elements = thead,tbody,tfoot
resharper_no_indent_inside_if_element_longer_than = 20000
resharper_place_attribute_on_same_line = false
resharper_show_autodetect_configure_formatting_tip = false
resharper_space_before_method_parentheses_anonymous = true
resharper_space_before_self_closing = true
resharper_space_within_single_line_array_initializer_braces = true
resharper_trailing_comma_in_multiline_lists = true
resharper_vb_insert_final_newline = false
resharper_vb_keep_user_linebreaks = false
resharper_vb_wrap_lines = false
resharper_wrap_before_arrow_with_expressions = true
resharper_xmldoc_indent_child_elements = DoNotTouch
resharper_xmldoc_indent_text = ZeroIndent
resharper_xmldoc_insert_final_newline = false
resharper_xmldoc_use_indent_from_vs = false
resharper_xmldoc_wrap_lines = false
resharper_xml_insert_final_newline = true
resharper_xml_wrap_lines = false
resharper_xml_wrap_tags_and_pi = false
# ReSharper inspection severities
resharper_arguments_style_literal_highlighting = none
resharper_arguments_style_named_expression_highlighting = none
resharper_arguments_style_string_literal_highlighting = none
resharper_arrange_local_function_body_highlighting = suggestion
resharper_arrange_method_or_operator_body_highlighting = warning
resharper_arrange_redundant_parentheses_highlighting = hint
resharper_arrange_this_qualifier_highlighting = hint
resharper_arrange_type_member_modifiers_highlighting = hint
resharper_arrange_type_modifiers_highlighting = hint
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
resharper_built_in_type_reference_style_highlighting = hint
resharper_class_never_instantiated_global_highlighting = hint
resharper_class_with_virtual_members_never_inherited_global_highlighting = hint
resharper_collection_never_updated_global_highlighting = hint
resharper_constructor_call_not_used_highlighting = hint
resharper_convert_if_statement_to_conditional_ternary_expression_highlighting = hint
resharper_convert_if_statement_to_null_coalescing_expression_highlighting = hint
resharper_convert_to_null_coalescing_compound_assignment_highlighting = hint
resharper_convert_to_using_declaration_highlighting = hint
resharper_event_never_subscribed_to_global_highlighting = hint
resharper_expression_is_always_const_highlighting = hint
resharper_inconsistent_naming_highlighting = hint
resharper_member_can_be_private_global_highlighting = hint
resharper_member_can_be_protected_global_highlighting = none
resharper_redundant_argument_default_value_highlighting = hint
resharper_redundant_base_qualifier_highlighting = warning
resharper_redundant_jump_statement_highlighting = hint
resharper_suggest_var_or_type_built_in_types_highlighting = hint
resharper_suggest_var_or_type_elsewhere_highlighting = hint
resharper_suggest_var_or_type_simple_types_highlighting = hint
resharper_unknown_css_class_highlighting = none
resharper_unsafe_comma_in_object_properties_list_highlighting = none
resharper_unused_auto_property_accessor_global_highlighting = hint
resharper_unused_member_global_highlighting = none
resharper_unused_member_in_super_global_highlighting = hint
resharper_unused_method_return_value_global_highlighting = hint
resharper_use_object_or_collection_initializer_highlighting = hint
resharper_use_string_interpolation_highlighting = hint
resharper_virtual_member_never_overridden_global_highlighting = hint
# Microsoft.CodeAnalysis.NetAnalyzers
dotnet_diagnostic.CA1000.severity = silent # CA1000: Do not declare static members on generic types
dotnet_diagnostic.CA1001.severity = silent # CA1001: Types that own disposable fields should be disposable
dotnet_diagnostic.CA1002.severity = warning # CA1002: Do not expose generic lists
dotnet_diagnostic.CA1003.severity = warning # CA1003: Use generic event handler instances
dotnet_diagnostic.CA1005.severity = warning # CA1005: Avoid excessive parameters on generic types
dotnet_diagnostic.CA1008.severity = warning # CA1008: Enums should have zero value
dotnet_diagnostic.CA1010.severity = silent # CA1010: Generic interface should also be implemented
dotnet_diagnostic.CA1012.severity = warning # CA1012: Abstract types should not have public constructors
dotnet_diagnostic.CA1014.severity = warning # CA1014: Mark assemblies with CLSCompliant
dotnet_diagnostic.CA1016.severity = suggestion # CA1016: Mark assemblies with assembly version
dotnet_diagnostic.CA1017.severity = warning # CA1017: Mark assemblies with ComVisible
dotnet_diagnostic.CA1018.severity = suggestion # CA1018: Mark attributes with AttributeUsageAttribute
dotnet_diagnostic.CA1019.severity = warning # CA1019: Define accessors for attribute arguments
dotnet_diagnostic.CA1021.severity = warning # CA1021: Avoid out parameters
dotnet_diagnostic.CA1024.severity = warning # CA1024: Use properties where appropriate
dotnet_diagnostic.CA1027.severity = warning # CA1027: Mark enums with FlagsAttribute
dotnet_diagnostic.CA1028.severity = warning # CA1028: Enum Storage should be Int32
dotnet_diagnostic.CA1030.severity = warning # CA1030: Use events where appropriate
dotnet_diagnostic.CA1031.severity = warning # CA1031: Do not catch general exception types
dotnet_diagnostic.CA1032.severity = warning # CA1032: Implement standard exception constructors
dotnet_diagnostic.CA1033.severity = warning # CA1033: Interface methods should be callable by child types
dotnet_diagnostic.CA1034.severity = warning # CA1034: Nested types should not be visible
dotnet_diagnostic.CA1036.severity = silent # CA1036: Override methods on comparable types
dotnet_diagnostic.CA1040.severity = warning # CA1040: Avoid empty interfaces
dotnet_diagnostic.CA1041.severity = suggestion # CA1041: Provide ObsoleteAttribute message
dotnet_diagnostic.CA1043.severity = warning # CA1043: Use Integral Or String Argument For Indexers
dotnet_diagnostic.CA1044.severity = warning # CA1044: Properties should not be write only
dotnet_diagnostic.CA1045.severity = warning # CA1045: Do not pass types by reference
dotnet_diagnostic.CA1046.severity = warning # CA1046: Do not overload equality operator on reference types
dotnet_diagnostic.CA1047.severity = suggestion # CA1047: Do not declare protected member in sealed type
dotnet_diagnostic.CA1050.severity = suggestion # CA1050: Declare types in namespaces
dotnet_diagnostic.CA1051.severity = silent # CA1051: Do not declare visible instance fields
dotnet_diagnostic.CA1052.severity = warning # CA1052: Static holder types should be Static or NotInheritable
dotnet_diagnostic.CA1054.severity = warning # CA1054: URI-like parameters should not be strings
dotnet_diagnostic.CA1055.severity = warning # CA1055: URI-like return values should not be strings
dotnet_diagnostic.CA1056.severity = warning # CA1056: URI-like properties should not be strings
dotnet_diagnostic.CA1058.severity = warning # CA1058: Types should not extend certain base types
dotnet_diagnostic.CA1060.severity = warning # CA1060: Move pinvokes to native methods class
dotnet_diagnostic.CA1061.severity = suggestion # CA1061: Do not hide base class methods
dotnet_diagnostic.CA1062.severity = warning # CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1063.severity = warning # CA1063: Implement IDisposable Correctly
dotnet_diagnostic.CA1064.severity = warning # CA1064: Exceptions should be public
dotnet_diagnostic.CA1065.severity = warning # CA1065: Do not raise exceptions in unexpected locations
dotnet_diagnostic.CA1066.severity = warning # CA1066: Implement IEquatable when overriding Object.Equals
dotnet_diagnostic.CA1067.severity = suggestion # CA1067: Override Object.Equals(object) when implementing IEquatable<T>
dotnet_diagnostic.CA1068.severity = suggestion # CA1068: CancellationToken parameters must come last
dotnet_diagnostic.CA1069.severity = suggestion # CA1069: Enums values should not be duplicated
dotnet_diagnostic.CA1070.severity = suggestion # CA1070: Do not declare event fields as virtual
dotnet_diagnostic.CA1200.severity = silent # CA1200: Avoid using cref tags with a prefix
dotnet_diagnostic.CA1303.severity = none # CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1304.severity = silent # CA1304: Specify CultureInfo
dotnet_diagnostic.CA1305.severity = silent # CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1307.severity = warning # CA1307: Specify StringComparison for clarity
dotnet_diagnostic.CA1308.severity = warning # CA1308: Normalize strings to uppercase
dotnet_diagnostic.CA1309.severity = silent # CA1309: Use ordinal string comparison
dotnet_diagnostic.CA1310.severity = silent # CA1310: Specify StringComparison for correctness
dotnet_diagnostic.CA1401.severity = suggestion # CA1401: P/Invokes should not be visible
dotnet_diagnostic.CA1416.severity = warning # CA1416: Validate platform compatibility
dotnet_diagnostic.CA1417.severity = warning # CA1417: Do not use 'OutAttribute' on string parameters for P/Invokes
dotnet_diagnostic.CA1501.severity = warning # CA1501: Avoid excessive inheritance
dotnet_diagnostic.CA1502.severity = warning # CA1502: Avoid excessive complexity
dotnet_diagnostic.CA1505.severity = warning # CA1505: Avoid unmaintainable code
dotnet_diagnostic.CA1506.severity = warning # CA1506: Avoid excessive class coupling
dotnet_diagnostic.CA1507.severity = suggestion # CA1507: Use nameof to express symbol names
dotnet_diagnostic.CA1508.severity = warning # CA1508: Avoid dead conditional code
dotnet_diagnostic.CA1509.severity = warning # CA1509: Invalid entry in code metrics rule specification file
dotnet_diagnostic.CA1700.severity = warning # CA1700: Do not name enum values 'Reserved'
dotnet_diagnostic.CA1707.severity = silent # CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1708.severity = silent # CA1708: Identifiers should differ by more than case
dotnet_diagnostic.CA1710.severity = silent # CA1710: Identifiers should have correct suffix
dotnet_diagnostic.CA1711.severity = silent # CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1712.severity = silent # CA1712: Do not prefix enum values with type name
dotnet_diagnostic.CA1713.severity = warning # CA1713: Events should not have 'Before' or 'After' prefix
dotnet_diagnostic.CA1715.severity = silent # CA1715: Identifiers should have correct prefix
dotnet_diagnostic.CA1716.severity = silent # CA1716: Identifiers should not match keywords
dotnet_diagnostic.CA1720.severity = silent # CA1720: Identifier contains type name
dotnet_diagnostic.CA1721.severity = warning # CA1721: Property names should not match get methods
dotnet_diagnostic.CA1724.severity = warning # CA1724: Type names should not match namespaces
dotnet_diagnostic.CA1725.severity = silent # CA1725: Parameter names should match base declaration
dotnet_diagnostic.CA1801.severity = warning # CA1801: Review unused parameters
dotnet_diagnostic.CA1802.severity = warning # CA1802: Use literals where appropriate
dotnet_diagnostic.CA1805.severity = silent # CA1805: Do not initialize unnecessarily
dotnet_diagnostic.CA1806.severity = suggestion # CA1806: Do not ignore method results
dotnet_diagnostic.CA1810.severity = warning # CA1810: Initialize reference type static fields inline
dotnet_diagnostic.CA1812.severity = warning # CA1812: Avoid uninstantiated internal classes
dotnet_diagnostic.CA1813.severity = warning # CA1813: Avoid unsealed attributes
dotnet_diagnostic.CA1814.severity = warning # CA1814: Prefer jagged arrays over multidimensional
dotnet_diagnostic.CA1815.severity = warning # CA1815: Override equals and operator equals on value types
dotnet_diagnostic.CA1816.severity = suggestion # CA1816: Dispose methods should call SuppressFinalize
dotnet_diagnostic.CA1819.severity = warning # CA1819: Properties should not return arrays
dotnet_diagnostic.CA1820.severity = warning # CA1820: Test for empty strings using string length
dotnet_diagnostic.CA1821.severity = suggestion # CA1821: Remove empty Finalizers
dotnet_diagnostic.CA1822.severity = suggestion # CA1822: Mark members as static
dotnet_diagnostic.CA1823.severity = warning # CA1823: Avoid unused private fields
dotnet_diagnostic.CA1824.severity = suggestion # CA1824: Mark assemblies with NeutralResourcesLanguageAttribute
dotnet_diagnostic.CA1825.severity = suggestion # CA1825: Avoid zero-length array allocations
dotnet_diagnostic.CA1826.severity = suggestion # CA1826: Do not use Enumerable methods on indexable collections
dotnet_diagnostic.CA1827.severity = suggestion # CA1827: Do not use Count() or LongCount() when Any() can be used
dotnet_diagnostic.CA1828.severity = suggestion # CA1828: Do not use CountAsync() or LongCountAsync() when AnyAsync() can be used
dotnet_diagnostic.CA1829.severity = suggestion # CA1829: Use Length/Count property instead of Count() when available
dotnet_diagnostic.CA1830.severity = suggestion # CA1830: Prefer strongly-typed Append and Insert method overloads on StringBuilder
dotnet_diagnostic.CA1831.severity = warning # CA1831: Use AsSpan or AsMemory instead of Range-based indexers when appropriate
dotnet_diagnostic.CA1832.severity = suggestion # CA1832: Use AsSpan or AsMemory instead of Range-based indexers when appropriate
dotnet_diagnostic.CA1833.severity = suggestion # CA1833: Use AsSpan or AsMemory instead of Range-based indexers when appropriate
dotnet_diagnostic.CA1834.severity = suggestion # CA1834: Consider using 'StringBuilder.Append(char)' when applicable
dotnet_diagnostic.CA1835.severity = suggestion # CA1835: Prefer the 'Memory'-based overloads for 'ReadAsync' and 'WriteAsync'
dotnet_diagnostic.CA1836.severity = suggestion # CA1836: Prefer IsEmpty over Count
dotnet_diagnostic.CA1837.severity = suggestion # CA1837: Use 'Environment.ProcessId'
dotnet_diagnostic.CA1838.severity = silent # CA1838: Avoid 'StringBuilder' parameters for P/Invokes
dotnet_diagnostic.CA2000.severity = warning # CA2000: Dispose objects before losing scope
dotnet_diagnostic.CA2002.severity = warning # CA2002: Do not lock on objects with weak identity
dotnet_diagnostic.CA2007.severity = warning # CA2007: Consider calling ConfigureAwait on the awaited task
dotnet_diagnostic.CA2008.severity = warning # CA2008: Do not create tasks without passing a TaskScheduler
dotnet_diagnostic.CA2009.severity = suggestion # CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
dotnet_diagnostic.CA2011.severity = suggestion # CA2011: Avoid infinite recursion
dotnet_diagnostic.CA2012.severity = suggestion # CA2012: Use ValueTasks correctly
dotnet_diagnostic.CA2013.severity = warning # CA2013: Do not use ReferenceEquals with value types
dotnet_diagnostic.CA2014.severity = warning # CA2014: Do not use stackalloc in loops
dotnet_diagnostic.CA2015.severity = warning # CA2015: Do not define finalizers for types derived from MemoryManager<T>
dotnet_diagnostic.CA2016.severity = suggestion # CA2016: Forward the 'CancellationToken' parameter to methods
dotnet_diagnostic.CA2100.severity = warning # CA2100: Review SQL queries for security vulnerabilities
dotnet_diagnostic.CA2101.severity = suggestion # CA2101: Specify marshaling for P/Invoke string arguments
dotnet_diagnostic.CA2109.severity = warning # CA2109: Review visible event handlers
dotnet_diagnostic.CA2119.severity = warning # CA2119: Seal methods that satisfy private interfaces
dotnet_diagnostic.CA2153.severity = warning # CA2153: Do Not Catch Corrupted State Exceptions
dotnet_diagnostic.CA2200.severity = warning # CA2200: Rethrow to preserve stack details
dotnet_diagnostic.CA2201.severity = silent # CA2201: Do not raise reserved exception types
dotnet_diagnostic.CA2207.severity = warning # CA2207: Initialize value type static fields inline
dotnet_diagnostic.CA2208.severity = suggestion # CA2208: Instantiate argument exceptions correctly
dotnet_diagnostic.CA2211.severity = suggestion # CA2211: Non-constant fields should not be visible
dotnet_diagnostic.CA2213.severity = warning # CA2213: Disposable fields should be disposed
dotnet_diagnostic.CA2214.severity = warning # CA2214: Do not call overridable methods in constructors
dotnet_diagnostic.CA2215.severity = silent # CA2215: Dispose methods should call base class dispose
dotnet_diagnostic.CA2216.severity = warning # CA2216: Disposable types should declare finalizer
dotnet_diagnostic.CA2217.severity = warning # CA2217: Do not mark enums with FlagsAttribute
dotnet_diagnostic.CA2218.severity = suggestion # CA2218: Override GetHashCode on overriding Equals
dotnet_diagnostic.CA2219.severity = suggestion # CA2219: Do not raise exceptions in finally clauses
dotnet_diagnostic.CA2224.severity = suggestion # CA2224: Override Equals on overloading operator equals
dotnet_diagnostic.CA2225.severity = warning # CA2225: Operator overloads have named alternates
dotnet_diagnostic.CA2226.severity = warning # CA2226: Operators should have symmetrical overloads
dotnet_diagnostic.CA2227.severity = warning # CA2227: Collection properties should be read only
dotnet_diagnostic.CA2229.severity = silent # CA2229: Implement serialization constructors
dotnet_diagnostic.CA2231.severity = suggestion # CA2231: Overload operator equals on overriding value type Equals
dotnet_diagnostic.CA2234.severity = warning # CA2234: Pass system uri objects instead of strings
dotnet_diagnostic.CA2235.severity = warning # CA2235: Mark all non-serializable fields
dotnet_diagnostic.CA2237.severity = warning # CA2237: Mark ISerializable types with serializable
dotnet_diagnostic.CA2241.severity = suggestion # CA2241: Provide correct arguments to formatting methods
dotnet_diagnostic.CA2242.severity = suggestion # CA2242: Test for NaN correctly
dotnet_diagnostic.CA2243.severity = warning # CA2243: Attribute string literals should parse correctly
dotnet_diagnostic.CA2244.severity = suggestion # CA2244: Do not duplicate indexed element initializations
dotnet_diagnostic.CA2245.severity = suggestion # CA2245: Do not assign a property to itself
dotnet_diagnostic.CA2246.severity = suggestion # CA2246: Assigning symbol and its member in the same statement
dotnet_diagnostic.CA2247.severity = warning # CA2247: Argument passed to TaskCompletionSource constructor should be TaskCreationOptions enum instead of TaskContinuationOptions enum
dotnet_diagnostic.CA2248.severity = suggestion # CA2248: Provide correct 'enum' argument to 'Enum.HasFlag'
dotnet_diagnostic.CA2249.severity = suggestion # CA2249: Consider using 'string.Contains' instead of 'string.IndexOf'
dotnet_diagnostic.CA2300.severity = warning # CA2300: Do not use insecure deserializer BinaryFormatter
dotnet_diagnostic.CA2301.severity = warning # CA2301: Do not call BinaryFormatter.Deserialize without first setting BinaryFormatter.Binder
dotnet_diagnostic.CA2302.severity = warning # CA2302: Ensure BinaryFormatter.Binder is set before calling BinaryFormatter.Deserialize
dotnet_diagnostic.CA2305.severity = warning # CA2305: Do not use insecure deserializer LosFormatter
dotnet_diagnostic.CA2310.severity = warning # CA2310: Do not use insecure deserializer NetDataContractSerializer
dotnet_diagnostic.CA2311.severity = warning # CA2311: Do not deserialize without first setting NetDataContractSerializer.Binder
dotnet_diagnostic.CA2312.severity = warning # CA2312: Ensure NetDataContractSerializer.Binder is set before deserializing
dotnet_diagnostic.CA2315.severity = warning # CA2315: Do not use insecure deserializer ObjectStateFormatter
dotnet_diagnostic.CA2321.severity = warning # CA2321: Do not deserialize with JavaScriptSerializer using a SimpleTypeResolver
dotnet_diagnostic.CA2322.severity = warning # CA2322: Ensure JavaScriptSerializer is not initialized with SimpleTypeResolver before deserializing
dotnet_diagnostic.CA2326.severity = warning # CA2326: Do not use TypeNameHandling values other than None
dotnet_diagnostic.CA2327.severity = warning # CA2327: Do not use insecure JsonSerializerSettings
dotnet_diagnostic.CA2328.severity = warning # CA2328: Ensure that JsonSerializerSettings are secure
dotnet_diagnostic.CA2329.severity = warning # CA2329: Do not deserialize with JsonSerializer using an insecure configuration
dotnet_diagnostic.CA2330.severity = warning # CA2330: Ensure that JsonSerializer has a secure configuration when deserializing
dotnet_diagnostic.CA2350.severity = warning # CA2350: Do not use DataTable.ReadXml() with untrusted data
dotnet_diagnostic.CA2351.severity = warning # CA2351: Do not use DataSet.ReadXml() with untrusted data
dotnet_diagnostic.CA2352.severity = warning # CA2352: Unsafe DataSet or DataTable in serializable type can be vulnerable to remote code execution attacks
dotnet_diagnostic.CA2353.severity = warning # CA2353: Unsafe DataSet or DataTable in serializable type
dotnet_diagnostic.CA2354.severity = warning # CA2354: Unsafe DataSet or DataTable in deserialized object graph can be vulnerable to remote code execution attacks
dotnet_diagnostic.CA2355.severity = warning # CA2355: Unsafe DataSet or DataTable type found in deserializable object graph
dotnet_diagnostic.CA2356.severity = warning # CA2356: Unsafe DataSet or DataTable type in web deserializable object graph
dotnet_diagnostic.CA2361.severity = warning # CA2361: Ensure auto-generated class containing DataSet.ReadXml() is not used with untrusted data
dotnet_diagnostic.CA2362.severity = warning # CA2362: Unsafe DataSet or DataTable in auto-generated serializable type can be vulnerable to remote code execution attacks
dotnet_diagnostic.CA3001.severity = warning # CA3001: Review code for SQL injection vulnerabilities
dotnet_diagnostic.CA3002.severity = warning # CA3002: Review code for XSS vulnerabilities
dotnet_diagnostic.CA3003.severity = warning # CA3003: Review code for file path injection vulnerabilities
dotnet_diagnostic.CA3004.severity = warning # CA3004: Review code for information disclosure vulnerabilities
dotnet_diagnostic.CA3005.severity = warning # CA3005: Review code for LDAP injection vulnerabilities
dotnet_diagnostic.CA3006.severity = warning # CA3006: Review code for process command injection vulnerabilities
dotnet_diagnostic.CA3007.severity = warning # CA3007: Review code for open redirect vulnerabilities
dotnet_diagnostic.CA3008.severity = warning # CA3008: Review code for XPath injection vulnerabilities
dotnet_diagnostic.CA3009.severity = warning # CA3009: Review code for XML injection vulnerabilities
dotnet_diagnostic.CA3010.severity = warning # CA3010: Review code for XAML injection vulnerabilities
dotnet_diagnostic.CA3011.severity = warning # CA3011: Review code for DLL injection vulnerabilities
dotnet_diagnostic.CA3012.severity = warning # CA3012: Review code for regex injection vulnerabilities
dotnet_diagnostic.CA3061.severity = silent # CA3061: Do Not Add Schema By URL
dotnet_diagnostic.CA3075.severity = silent # CA3075: Insecure DTD processing in XML
dotnet_diagnostic.CA3076.severity = silent # CA3076: Insecure XSLT script processing.
dotnet_diagnostic.CA3077.severity = silent # CA3077: Insecure Processing in API Design, XmlDocument and XmlTextReader
dotnet_diagnostic.CA3147.severity = silent # CA3147: Mark Verb Handlers With Validate Antiforgery Token
dotnet_diagnostic.CA5350.severity = silent # CA5350: Do Not Use Weak Cryptographic Algorithms
dotnet_diagnostic.CA5351.severity = silent # CA5351: Do Not Use Broken Cryptographic Algorithms
dotnet_diagnostic.CA5358.severity = warning # CA5358: Review cipher mode usage with cryptography experts
dotnet_diagnostic.CA5359.severity = silent # CA5359: Do Not Disable Certificate Validation
dotnet_diagnostic.CA5360.severity = silent # CA5360: Do Not Call Dangerous Methods In Deserialization
dotnet_diagnostic.CA5361.severity = warning # CA5361: Do Not Disable SChannel Use of Strong Crypto
dotnet_diagnostic.CA5362.severity = warning # CA5362: Potential reference cycle in deserialized object graph
dotnet_diagnostic.CA5363.severity = silent # CA5363: Do Not Disable Request Validation
dotnet_diagnostic.CA5364.severity = silent # CA5364: Do Not Use Deprecated Security Protocols
dotnet_diagnostic.CA5365.severity = silent # CA5365: Do Not Disable HTTP Header Checking
dotnet_diagnostic.CA5366.severity = silent # CA5366: Use XmlReader for 'DataSet.ReadXml()'
dotnet_diagnostic.CA5367.severity = warning # CA5367: Do Not Serialize Types With Pointer Fields
dotnet_diagnostic.CA5368.severity = silent # CA5368: Set ViewStateUserKey For Classes Derived From Page
dotnet_diagnostic.CA5369.severity = silent # CA5369: Use XmlReader for 'XmlSerializer.Deserialize()'
dotnet_diagnostic.CA5370.severity = silent # CA5370: Use XmlReader for XmlValidatingReader constructor
dotnet_diagnostic.CA5371.severity = silent # CA5371: Use XmlReader for 'XmlSchema.Read()'
dotnet_diagnostic.CA5372.severity = silent # CA5372: Use XmlReader for XPathDocument constructor
dotnet_diagnostic.CA5373.severity = silent # CA5373: Do not use obsolete key derivation function
dotnet_diagnostic.CA5374.severity = silent # CA5374: Do Not Use XslTransform
dotnet_diagnostic.CA5375.severity = warning # CA5375: Do Not Use Account Shared Access Signature
dotnet_diagnostic.CA5376.severity = warning # CA5376: Use SharedAccessProtocol HttpsOnly
dotnet_diagnostic.CA5377.severity = warning # CA5377: Use Container Level Access Policy
dotnet_diagnostic.CA5378.severity = warning # CA5378: Do not disable ServicePointManagerSecurityProtocols
dotnet_diagnostic.CA5379.severity = silent # CA5379: Ensure Key Derivation Function algorithm is sufficiently strong
dotnet_diagnostic.CA5380.severity = warning # CA5380: Do Not Add Certificates To Root Store
dotnet_diagnostic.CA5381.severity = warning # CA5381: Ensure Certificates Are Not Added To Root Store
dotnet_diagnostic.CA5382.severity = warning # CA5382: Use Secure Cookies In ASP.NET Core
dotnet_diagnostic.CA5383.severity = warning # CA5383: Ensure Use Secure Cookies In ASP.NET Core
dotnet_diagnostic.CA5384.severity = silent # CA5384: Do Not Use Digital Signature Algorithm (DSA)
dotnet_diagnostic.CA5385.severity = silent # CA5385: Use Rivest–Shamir–Adleman (RSA) Algorithm With Sufficient Key Size
dotnet_diagnostic.CA5386.severity = warning # CA5386: Avoid hardcoding SecurityProtocolType value
dotnet_diagnostic.CA5387.severity = warning # CA5387: Do Not Use Weak Key Derivation Function With Insufficient Iteration Count
dotnet_diagnostic.CA5388.severity = warning # CA5388: Ensure Sufficient Iteration Count When Using Weak Key Derivation Function
dotnet_diagnostic.CA5389.severity = warning # CA5389: Do Not Add Archive Item's Path To The Target File System Path
dotnet_diagnostic.CA5390.severity = warning # CA5390: Do not hard-code encryption key
dotnet_diagnostic.CA5391.severity = warning # CA5391: Use antiforgery tokens in ASP.NET Core MVC controllers
dotnet_diagnostic.CA5392.severity = warning # CA5392: Use DefaultDllImportSearchPaths attribute for P/Invokes
dotnet_diagnostic.CA5393.severity = warning # CA5393: Do not use unsafe DllImportSearchPath value
dotnet_diagnostic.CA5394.severity = warning # CA5394: Do not use insecure randomness
dotnet_diagnostic.CA5395.severity = warning # CA5395: Miss HttpVerb attribute for action methods
dotnet_diagnostic.CA5396.severity = warning # CA5396: Set HttpOnly to true for HttpCookie
dotnet_diagnostic.CA5397.severity = silent # CA5397: Do not use deprecated SslProtocols values
dotnet_diagnostic.CA5398.severity = warning # CA5398: Avoid hardcoded SslProtocols values
dotnet_diagnostic.CA5399.severity = warning # CA5399: HttpClients should enable certificate revocation list checks
dotnet_diagnostic.CA5400.severity = warning # CA5400: Ensure HttpClient certificate revocation list check is not disabled
dotnet_diagnostic.CA5401.severity = warning # CA5401: Do not use CreateEncryptor with non-default IV
dotnet_diagnostic.CA5402.severity = warning # CA5402: Use CreateEncryptor with the default IV
dotnet_diagnostic.CA5403.severity = warning # CA5403: Do not hard-code certificate
dotnet_diagnostic.IL3000.severity = warning # IL3000: Avoid using accessing Assembly file path when publishing as a single-file
dotnet_diagnostic.IL3001.severity = warning # IL3001: Avoid using accessing Assembly file path when publishing as a single-file
[*.cs]
indent_size = 4
tab_width = 4
[*.sln]
indent_style = tab
indent_size = 4
tab_width = 4