-
Notifications
You must be signed in to change notification settings - Fork 5
/
.editorconfig
465 lines (337 loc) · 16.6 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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Don't use tabs for indentation.
[*]
indent_style = space
# (Please don't specify an indent_size here; that has too many unintended consequences.)
# Code files
[*.{cs,csx,vb,vbx,csproj,vcxproj}]
indent_size = 4
insert_final_newline = true
charset = utf-8
# XML project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
# XML config files
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2
# JSON files
[*.json]
indent_size = 2
# Powershell files
[*.ps1]
indent_size = 2
# Shell script files
[*.sh]
end_of_line = lf
indent_size = 2
# Dotnet code style settings:
[*.{cs,vb}]
# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true
# Avoid "this." and "Me." if not necessary
dotnet_style_qualification_for_field = false:refactoring
dotnet_style_qualification_for_property = false:refactoring
dotnet_style_qualification_for_method = false:refactoring
dotnet_style_qualification_for_event = false:refactoring
# Use language keywords instead of framework type names for type references
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
# Suggest more modern language features when available
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_explicit_tuple_names = true:suggestion
# Non-private static fields are PascalCase
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
# Non-private readonly fields are PascalCase
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_readonly_field_style
dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly
dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case
# Constants are PascalCase
dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style
dotnet_naming_symbols.constants.applicable_kinds = field, local
dotnet_naming_symbols.constants.required_modifiers = const
dotnet_naming_style.constant_style.capitalization = pascal_case
# Static fields are camelCase
dotnet_naming_rule.static_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.static_fields_should_be_camel_case.symbols = static_fields
dotnet_naming_rule.static_fields_should_be_camel_case.style = static_field_style
dotnet_naming_symbols.static_fields.applicable_kinds = field
dotnet_naming_symbols.static_fields.required_modifiers = static
dotnet_naming_style.static_field_style.capitalization = camel_case
# Instance fields are camelCase and start with _
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style
dotnet_naming_symbols.instance_fields.applicable_kinds = field
dotnet_naming_style.instance_field_style.capitalization = camel_case
dotnet_naming_style.instance_field_style.required_prefix = _
# Locals and parameters are camelCase
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
dotnet_naming_style.camel_case_style.capitalization = camel_case
# Local functions are PascalCase
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
dotnet_naming_style.local_function_style.capitalization = pascal_case
# By default, name items with PascalCase
dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members
dotnet_naming_rule.members_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.all_members.applicable_kinds = *
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
# CSharp code style settings:
[*.cs]
# Newline settings
csharp_new_line_before_open_brace = all
csharp_new_line_before_else = true
csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_block_contents = true
csharp_indent_braces = false
csharp_indent_case_contents = true
csharp_indent_case_contents_when_block = true
csharp_indent_switch_labels = true
csharp_indent_labels = flush_left
# Prefer "var" when obvious
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_style_var_elsewhere = false:silent
# Method-like constructs
# Set to none because I like to be able to forward methods as an expression body, but if I'm doing something such as setting a value, I don't want expression syntax, and there's not enough granularity
# Example:
# private void ClassA.Foo() => ClassB.Bar();
#
# private void SetFoo()
# {
# foo = bar;
# }
csharp_style_expression_bodied_methods = false:none
csharp_style_expression_bodied_constructors = false:suggestion
csharp_style_expression_bodied_operators = false:suggestion
csharp_style_expression_bodied_local_functions = false:silent
# Prefer property-like constructs to have an expression-body
csharp_style_expression_bodied_properties = true:suggestion
csharp_style_expression_bodied_indexers = true:suggestion
csharp_style_expression_bodied_accessors = true:suggestion
csharp_style_expression_bodied_lambdas = true:suggestion
# Suggest more modern language features when available
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
csharp_style_inlined_variable_declaration = true:suggestion
csharp_style_throw_expression = true:suggestion
csharp_style_conditional_delegate_call = true:suggestion
# Space preferences
csharp_space_after_cast = false
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_after_comma = true
csharp_space_after_dot = false
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_after_semicolon_in_for_statement = true
csharp_space_around_binary_operators = before_and_after
csharp_space_around_declaration_statements = do_not_ignore
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_before_comma = false
csharp_space_before_dot = false
csharp_space_before_open_square_brackets = false
csharp_space_before_semicolon_in_for_statement = false
csharp_space_between_empty_square_brackets = false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_space_between_square_brackets = false
# Blocks are allowed
csharp_prefer_braces = true:suggestion
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_statements = true
csharp_prefer_simple_using_statement = false # Prefer the old using statement format. See example: https://github.com/RehanSaeed/EditorConfig/pull/23
# NOTE: Requires **VS2019 16.3** or later
# Code files
[*.{cs,vb}]
# Catch more specific exception type
dotnet_diagnostic.CA1031.severity = none
# Move pinvokes to native methods class
dotnet_diagnostic.CA1060.severity = none
# Modify 'Dispose' so that it calls Dispose(true), then calls GC.SuppressFinalize on the current object instance ('this' or 'Me' in Visual Basic), and then returns.
dotnet_diagnostic.CA1063.severity = none
# Retrieve strings from a resource table instead of using a string literal
dotnet_diagnostic.CA1303.severity = none
# string.ToUpper behavior could vary based on the current user's locale settings
dotnet_diagnostic.CA1304.severity = none
# String parsing behavior could vary based on the current user's locale settings
dotnet_diagnostic.CA1305.severity = none
# string.EndsWith behavior could vary based on the current user's locale settings
dotnet_diagnostic.CA1307.severity = none
# P/Invoke method should not be visible
dotnet_diagnostic.CA1401.severity = none
# Remove underscore for member name
dotnet_diagnostic.CA1707.severity = none
# Member is explicitly initialized to its default value
dotnet_diagnostic.CA1805.severity = none
# Using method without reference to error
dotnet_diagnostic.CA1806.severity = none
# Change Dispose() to call GC.SuppressFinalize(object). This will prevent derived types that introduce a finalizer from needing to re-implement 'IDisposable' to call it.
dotnet_diagnostic.CA1816.severity = none
# Call on object before all references to it are out of scope
dotnet_diagnostic.CA2000.severity = none
# Documentation line should begin with a space
dotnet_diagnostic.SA1004.severity = none
# Single line comment should begin with a space
dotnet_diagnostic.SA1005.severity = none
# Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# Block statements should not contain embedded comments
dotnet_diagnostic.SA1108.severity = none
# Closing parenthesis should be on line of last parameter
dotnet_diagnostic.SA1111.severity = none
# Comma should be on the same line as previous parameter
dotnet_diagnostic.SA1113.severity = none
# Split parameters should start on line after declaration
dotnet_diagnostic.SA1116.severity = none
# Parameters should be on same line or separate lines
dotnet_diagnostic.SA1117.severity = none
# Parameter should not span multiple lines
dotnet_diagnostic.SA1118.severity = none
# Statement should not use unnecessary parenthesis
dotnet_diagnostic.SA1119.severity = none
# Do not use regions
dotnet_diagnostic.SA1124.severity = none
# Put constructor initializers on their own line
dotnet_diagnostic.SA1128.severity = none
# Do not use default value type constructor
dotnet_diagnostic.SA1129.severity = none
# Use lambda syntax
dotnet_diagnostic.SA1130.severity = none
# Constant values should appear on the right-hand side of comparisons
dotnet_diagnostic.SA1131.severity = none
# Do not combine attributes
dotnet_diagnostic.SA1133.severity = none
# Each attribute should be placed on its own line of code
dotnet_diagnostic.SA1134.severity = none
# Enum values should be on separate lines
dotnet_diagnostic.SA1136.severity = none
# Use literal suffix notation instead of casting
dotnet_diagnostic.SA1139.severity = none
# Elements should appear in the correct order
dotnet_diagnostic.SA1201.severity = none
# Elements should be ordered by access
dotnet_diagnostic.SA1202.severity = none
# Constants should appear before fields
dotnet_diagnostic.SA1203.severity = none
# Static elements should appear before instance elements
dotnet_diagnostic.SA1204.severity = none
# Using directives should be ordered alphabetically by the namespaces
dotnet_diagnostic.SA1210.severity = none
# A get accessor appears after a set accessor within a property or indexer
dotnet_diagnostic.SA1212.severity = none
# Readonly fields should appear before non-readonly fields
dotnet_diagnostic.SA1214.severity = none
# Element should begin with an uppercase letter
dotnet_diagnostic.SA1300.severity = none
# Const field names should begin with upper-case letter
dotnet_diagnostic.SA1303.severity = none
# Field should begin with lower-case letter
dotnet_diagnostic.SA1306.severity = none
# Field should begin with upper-case letter
dotnet_diagnostic.SA1307.severity = none
# Field names should not begin with underscore
dotnet_diagnostic.SA1309.severity = none
# Field should not contain an underscore
dotnet_diagnostic.SA1310.severity = none
# Static readonly fields should begin with upper-case letter
dotnet_diagnostic.SA1311.severity = none
# Variable 'Handle' should begin with lower-case letter
dotnet_diagnostic.SA1312.severity = none
# Parameter should begin with lower-case letter
dotnet_diagnostic.SA1313.severity = none
# Type parameter names should begin with T
dotnet_diagnostic.SA1314.severity = none
# Element should declare an access modifier
dotnet_diagnostic.SA1400.severity = none
# Fields should be private
dotnet_diagnostic.SA1401.severity = none
# File may only contain a single type
dotnet_diagnostic.SA1402.severity = none
# Debug.Assert should provide message text
dotnet_diagnostic.SA1405.severity = none
# Arithmetic expressions should declare precedence
dotnet_diagnostic.SA1407.severity = none
# Conditional expressions should declare precedence
dotnet_diagnostic.SA1408.severity = none
# Attribute constructor should not use unnecessary parenthesis
dotnet_diagnostic.SA1411.severity = none
# Use trailing comma in multi-line initializers
dotnet_diagnostic.SA1413.severity = none
# Braces for multi-line statements should not share line
dotnet_diagnostic.SA1500.severity = none
# Statement should not be on a single line
dotnet_diagnostic.SA1501.severity = none
# Element should not be on a single line
dotnet_diagnostic.SA1502.severity = none
# Braces should not be omitted
dotnet_diagnostic.SA1503.severity = none
# All accessors should be single-line or multi-line
dotnet_diagnostic.SA1504.severity = none
# Element documentation headers should not be followed by blank line [CorruptCore]
dotnet_diagnostic.SA1506.severity = none
# Single-line comments should not be followed by blank line
dotnet_diagnostic.SA1512.severity = none
# Closing brace should be followed by blank line
dotnet_diagnostic.SA1513.severity = none
# Element documentation header should be preceded by blank line
dotnet_diagnostic.SA1514.severity = none
# Single-line comment should be preceded by blank line
dotnet_diagnostic.SA1515.severity = none
# Elements should be separated by blank line
dotnet_diagnostic.SA1516.severity = none
# Braces should not be omitted from multi-line child statement
dotnet_diagnostic.SA1519.severity = none
# Use braces consistently
dotnet_diagnostic.SA1520.severity = none
# Elements should be documented
dotnet_diagnostic.SA1600.severity = none
# Partial elements should be documented
dotnet_diagnostic.SA1601.severity = none
# Enumeration items should be documented
dotnet_diagnostic.SA1602.severity = none
# The documentation text within the param tag must not be empty
dotnet_diagnostic.SA1614.severity = none
# File should have header
dotnet_diagnostic.SA1633.severity = none
# File name should match first type name
dotnet_diagnostic.SA1649.severity = none
# The file header should contain a copyright tag.
dotnet_diagnostic.SA1634.severity = none
# Constructor summary documentation should begin with standard text
dotnet_diagnostic.SA1642.severity = none
# The property's documentation summary text should begin with: 'Gets or sets a value indicating whether'
dotnet_diagnostic.SA1623.severity = none
# Tuple element name should use correct casing
dotnet_diagnostic.SA1316.severity = none