-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
458 lines (450 loc) · 16.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
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
root = true
[*.asmdef]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.cs]
charset = utf-8
end_of_line = crlf
trim_trailing_whitespace = true
# Blank Lines
blank_lines_inside_region = 1
blank_lines_inside_region = 0
blank_lines_before_single_line_comment = 0
blank_lines_after_start_comment = 0
blank_lines_between_using_groups = 0
blank_lines_after_using_list = 1
blank_lines_around_namespace = 1
blank_lines_inside_namespace = 1
blank_lines_after_file_scoped_namespace_directive = 1
blank_lines_around_type = 1
blank_lines_around_single_line_type = 0
blank_lines_inside_type = 0
blank_lines_around_field = 1
blank_lines_around_single_line_field = 0
blank_lines_around_property = 1
blank_lines_around_single_line_property = 0
blank_lines_around_auto_property = 1
blank_lines_around_single_line_auto_property = 0
blank_lines_around_accessor = 0
blank_lines_around_single_line_accessor = 0
blank_lines_around_invocable = 1
blank_lines_around_single_line_invocable = 0
blank_lines_around_local_method = 1
blank_lines_around_single_line_local_method = 0
blank_lines_before_control_transfer_statements = 0
blank_lines_after_control_transfer_statements = 0
blank_lines_before_block_statements = 0
blank_lines_after_block_statements = 0
blank_lines_before_multiline_statements = 0
blank_lines_after_multiline_statements = 0
blank_lines_around_block_case_section = 0
blank_lines_around_multiline_case_section = 0
blank_lines_before_case = 0
blank_lines_after_case = 0
keep_blank_lines_in_declarations = 0
keep_blank_lines_in_code = 1
remove_blank_lines_near_braces_in_declarations = true
remove_blank_lines_near_braces_in_code = true
# Braces layout
brace_style = next_line
type_declaration_braces = next_line
invocable_declaration_braces = next_line
anonymous_method_declaration_braces = next_line
accessor_owner_declaration_braces = next_line
accessor_declaration_braces = next_line
case_block_braces = next_line
initializer_braces = next_line
other_braces = next_line
allow_comment_after_lbrace = false
empty_block_style = together_same_line
indent_inside_namespace = false
use_continuous_indent_inside_initializer_braces = false
# Syntax Style
## Var
for_built_in_types = use_var
for_simple_types = use_var
for_other_types = use_var
use_roslyn_logic_for_evident_types = false
prefer_separate_deconstructed_variables_declaration = false
prefer_explicit_discard_declaration = false
## Instance members qualification
instance_members_qualify_members = none
instance_members_qualify_declared_in = this_class
## Static members qualification
static_members_qualify_members = none
static_members_qualify_with = declared_type
## Built-in types
builtin_type_reference_style = use_keyword
builtin_type_reference_for_member_access_style = use_keyword
builtin_type_apply_to_native_integer = true
## Reference qualification and 'using' directives
prefer_qualified_reference = false
add_imports_to_deepest_scope = false
sort_usings_with_system_first = true
qualified_using_at_nested_scope = false
allow_alias = false
can_use_global_alias = false
## Modifiers
default_private_modifier = explicit
default_internal_modifier = explicit
## Arguments
arguments_skip_single = false
arguments_literal = positional
arguments_string_literal = positional
arguments_named = positional
arguments_anonymous_function = positional
arguments_other = positional
## Parentheses
parentheses_redundancy_style = remove_if_not_clarifies_precedence
parentheses_non_obvious_operations = none
parentheses_group_non_obvious_operations = none
parentheses_same_type_operations = true
## Braces
braces_for_ifelse = not_required
braces_for_for = not_required
braces_for_foreach = not_required
braces_for_while = not_required
braces_for_dowhile = not_required
braces_for_using = not_required
braces_for_lock = not_required
braces_for_fixed = not_required
braces_redundant = true
## Code Body
method_or_operator_body = expression_body
local_function_body = expression_body
constructor_or_destructor_body = expression_body
accessor_owner_body = accessors_with_expression_body
namespace_body = file_scoped
use_heuristics_for_body_style = false
## Attributes
force_attribute_style = separate
## Trailing comma
trailing_comma_in_multiline_lists = true
trailing_comma_in_singleline_lists = false
## Object creation
object_creation_when_type_evident = target_typed
object_creation_when_type_not_evident = explicitly_typed
## Default value
default_value_when_type_evident = default_literal
## Patterns
null_checking_pattern_style = not_null_pattern
## Primary Constructor
style_prefer_primary_constructors = true
# Tabs, Indents, Alignment
indent_style = tab
indent_size = 4
tab_width = 4
continuous_indent_multiplier = 1
indent_nested_usings_stmt = false
indent_nested_fixed_stmt = false
indent_nested_lock_stmt = false
indent_nested_for_stmt = false
indent_nested_foreach_stmt = false
indent_nested_while_stmt = false
use_continuous_indent_inside_parens = true
indent_method_decl_pars = inside
indent_primary_constructor_decl_pars = inside
indent_invocation_pars = inside
indent_statement_pars = inside
indent_typeparam_angles = inside
indent_typearg_angles = inside
indent_pars = inside
indent_preprocessor_if = no_indent
indent_preprocessor_region = no_indent
indent_preprocessor_other = no_indent
indent_switch_labels = false
outdent_statement_labels = true
indent_type_constraints = true
stick_comment = true
place_comments_at_first_column = true
use_indent_from_previous_element = true
indent_braces_inside_statement_conditions = false
alignment_tab_fill_style = optimal_fill
allow_far_alignment = true
align_multiline_parameter = true
align_multiline_extends_list = true
align_linq_query = true
align_multiline_binary_expressions_chain = true
outdent_binary_ops = true
align_multiline_calls_chain = true
outdent_dots = true
align_multiline_array_and_object_initializer = false
align_multiline_switch_expression = false
align_multiline_property_pattern = false
align_multiline_list_pattern = false
align_multiline_binary_patterns = true
outdent_binary_pattern_ops = true
indent_anonymous_method_block = false
align_first_arg_by_paren = false
align_multiline_argument = true
align_tuple_components = true
align_multiline_expression = false
align_multiline_statement_conditions = true
align_multiline_for_stmt = true
align_multiple_declaration = true
align_multline_type_parameter_list = true
align_multline_type_parameter_constrains = true
outdent_commas = true
align_multiline_comments = true
indent_raw_literal_string = indent
int_align_fix_in_adjacent = true
int_align = true
int_align_fields = true
int_align_properties = true
int_align_methods = false
int_align_parameters = false
int_align_variables = true
int_align_assignments = true
int_align_property_patterns = true
int_align_nested_ternary = true
int_align_invocations = true
int_align_binary_expressions = true
int_align_comments = true
int_align_switch_sections = true
int_align_switch_expressions = true
# Line Breaks
max_line_length = 120
insert_final_newline = true
wrap_before_comma = false
wrap_before_eq = false
wrap_before_colon = true
special_else_if_treatment = true
max_attribute_length_for_same_line = 1
keep_existing_arrangement = false
keep_existing_attribute_arrangement = false
keep_existing_declaration_parens_arrangement = false
place_attribute_on_same_line = never
place_type_attribute_on_same_line = never
place_method_attribute_on_same_line = never
place_accessorholder_attribute_on_same_line = never
place_accessor_attribute_on_same_line = never
place_field_attribute_on_same_line = never
place_record_field_attribute_on_same_line = if_owner_is_single_line
wrap_before_declaration_lpar = false
wrap_after_declaration_lpar = true
wrap_before_declaration_rpar = false
wrap_parameters_style = chop_if_long
max_formal_parameters_on_line = 4
## Constructor
keep_existing_primary_constructor_declaration_parens_arrangement = false
place_constructor_initializer_on_same_line = false
place_primary_constructor_initializer_on_same_line = false
wrap_base_clause_style = chop_always
wrap_ctor_initializer_style = chop_always
wrap_primary_constructor_parameters_style = chop_if_long
max_primary_constructor_parameters_on_line = 4
wrap_before_primary_constructor_declaration_lpar = false
wrap_after_primary_constructor_declaration_lpar = true
wrap_before_primary_constructor_declaration_rpar = false
## Expression Body
keep_existing_expr_member_arrangement = false
place_expr_method_on_single_line = never
place_expr_property_on_single_line = never
place_expr_accessor_on_single_line = if_owner_is_single_line
wrap_before_arrow_with_expressions = false
## Type parameters, Constraints, and Base Types
place_type_constraints_on_same_line = false
wrap_before_first_type_parameter_constraint = true
wrap_multiple_type_parameter_constraints_style = chop_always
wrap_before_type_parameter_langle = false
wrap_before_extends_colon = true
wrap_extends_list_style = chop_always
## Declaration Blocks
keep_existing_declaration_block_arrangement = false
place_simple_blocks_on_single_line = false
place_simple_declaration_blocks_on_single_line = true
place_abstract_accessorholder_on_single_line = true
place_simple_accessorholder_on_single_line = false
place_accessor_with_attrs_holder_on_single_line = false
place_simple_accessor_on_single_line = true
place_simple_method_on_single_line = false
## Enumerations
keep_existing_enum_arrangement = false
max_enum_members_on_line = 0
place_simple_enum_on_single_line = false
wrap_enum_declaration = chop_always
wrap_enumeration_style = chop_always
## Statements
new_line_before_else = true
new_line_before_while = false
new_line_before_catch = true
new_line_before_finally = true
wrap_for_stmt_header_style = chop_if_long
wrap_multiple_declaration_style = chop_if_long
## Embedded Statements
keep_existing_embedded_arrangement = false
place_simple_embedded_statement_on_same_line = never
place_simple_case_statement_on_same_line = never
## Embedded Blocks
keep_existing_embedded_block_arrangement = false
place_simple_embedded_block_on_same_line = false
place_simple_anonymousmethod_on_single_line = false
## Switch Expressions
keep_existing_switch_expression_arrangement = false
place_simple_switch_expression_on_single_line = false
wrap_switch_expression = chop_always
## Property Patterns
keep_existing_property_patterns_arrangement = false
place_simple_property_pattern_on_single_line = true
wrap_property_pattern = chop_if_long
## list Patterns
keep_existing_list_patterns_arrangement = false
place_simple_list_pattern_on_single_line = true
wrap_list_pattern = chop_if_long
## Initializers
keep_existing_initializer_arrangement = false
place_simple_initializer_on_single_line = true
max_initializer_elements_on_line = 1
wrap_object_and_collection_initializer_style = chop_if_long
max_array_initializer_elements_on_line = 8
wrap_array_initializer_style = chop_if_long
## Invocations
wrap_arguments_style = chop_if_long
max_invocation_arguments_on_line = 4
keep_existing_invocation_parens_arrangement = false
wrap_before_invocation_lpar = false
wrap_after_invocation_lpar = true
wrap_before_invocation_rpar = false
## Member Access Expressions
wrap_after_dot_in_method_calls = false
wrap_chained_method_calls = chop_always
wrap_before_first_method_call = false
wrap_after_property_in_chained_method_calls = false
## Binary Expressions
wrap_before_binary_opsign = true
wrap_chained_binary_expressions = chop_if_long
wrap_before_binary_pattern_op = true
wrap_chained_binary_patterns = chop_if_long
force_chop_compound_if_expression = true
force_chop_compound_while_expression = true
force_chop_compound_do_expression = true
## Ternary Expressions
wrap_before_ternary_opsigns = true
wrap_ternary_expr_style = chop_if_long
nested_ternary_style = compact
## LINQ Expressions
wrap_linq_expressions = chop_always
wrap_before_linq_expression = true
place_linq_into_on_new_line = false
## Interpolated Strings
wrap_verbatim_interpolated_strings = no_wrap
# Spaces
extra_spaces = remove_all
space_after_keywords_in_control_flow_statements = true
space_before_if_parentheses = true
space_before_while_parentheses = true
space_before_catch_parentheses = true
space_before_switch_parentheses = true
space_before_for_parentheses = true
space_before_foreach_parentheses = true
space_before_using_parentheses = true
space_before_lock_parentheses = true
space_before_fixed_parentheses = true
space_between_method_call_name_and_opening_parenthesis = false
space_before_method_call_parentheses = false
space_before_empty_method_call_parentheses = false
space_before_method_parentheses = false
space_before_empty_method_parentheses = false
space_before_typeof_parentheses = false
space_before_default_parentheses = false
space_before_checked_parentheses = false
space_before_sizeof_parentheses = false
space_before_nameof_parentheses = false
space_before_new_parentheses = false
space_between_keyword_and_expression = true
space_between_keyword_and_type = true
space_between_parentheses_of_control_flow_statements = false
space_within_if_parentheses = false
space_within_while_parentheses = false
space_within_catch_parentheses = false
space_within_switch_parentheses = false
space_within_for_parentheses = false
space_within_foreach_parentheses = false
space_within_using_parentheses = false
space_within_lock_parentheses = false
space_within_fixed_parentheses = false
space_within_parentheses = false
space_between_typecast_parentheses = false
space_between_method_declaration_parameter_list_parentheses = false
space_between_method_declaration_empty_parameter_list_parentheses = false
space_between_method_call_parameter_list_parentheses = false
space_between_method_call_empty_parameter_list_parentheses = false
space_within_typeof_parentheses = false
space_within_default_parentheses = false
space_within_checked_parentheses = false
space_within_sizeof_parentheses = false
space_within_nameof_parentheses = false
space_within_new_parentheses = false
space_before_open_square_brackets = false
space_before_array_access_brackets = false
space_before_array_rank_brackets = false
space_between_square_brackets = false
space_within_array_access_brackets = false
space_within_list_pattern_brackets = false
space_within_array_rank_brackets = false
space_within_array_rank_empty_brackets = false
space_before_type_parameter_angle = false
space_before_type_argument_angle = false
space_within_type_parameter_angles = false
space_within_type_argument_angles = false
space_before_singleline_accessorholder = true
space_in_singleline_accessorholder = true
space_between_accessors_in_singleline_property = true
space_within_empty_braces = false
space_in_singleline_method = true
space_in_singleline_anonymous_method = true
space_within_single_line_array_initializer_braces = true
space_around_binary_operator = true
space_around_assignment_op = true
space_around_logical_op = true
space_around_equality_op = true
space_around_relational_op = true
space_around_bitwise_op = true
space_around_additive_op = true
space_around_multiplicative_op = true
space_around_shift_op = true
space_around_nullcoalescing_op = true
space_around_member_access_operator = false
space_around_arrow_op = false
space_after_unary_operator = false
space_after_logical_not_op = false
space_after_unary_minus_op = false
space_after_unary_plus_op = false
space_after_ampersand_op = false
space_after_asterik_op = false
space_near_postfix_and_prefix_op = false
space_around_ternary_operator = true
space_before_ternary_quest = true
space_after_ternary_quest = true
space_before_ternary_colon = true
space_after_ternary_colon = true
space_before_comma = false
space_after_comma = true
space_before_semicolon_in_for_statement = false
space_after_semicolon_in_for_statement = true
space_before_semicolon = false
space_before_colon_in_inheritance_clause = true
space_after_colon_in_inheritance_clause = true
space_before_type_parameter_constraint_colon = true
space_after_type_parameter_constraint_colon = true
space_before_colon_in_case = false
space_after_colon_in_case = true
space_before_colon = false
space_after_colon = true
space_before_attribute_colon = false
space_after_attribute_colon = true
space_between_attribute_sections = true
space_within_attribute_brackets = false
space_after_attributes = true
space_after_cast = true
space_around_dot = false
space_around_lambda_arrow = true
space_before_pointer_asterik_declaration = false
space_before_nullable_mark = false
space_around_alias_eq = true
space_before_trailing_comment = true
space_after_operator_keyword = false
space_within_slice_pattern = false