-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
665 lines (584 loc) · 43.8 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
root = true
# Remove the line below if you want to inherit .editorconfig settings from higher directories
# C# files
[*.cs]
#### Core EditorConfig Options ####
# Indentation and spacing
indent_size = 4
indent_style = space
tab_width = 4
# New line preferences
end_of_line = crlf
insert_final_newline = false
#### .NET Coding Conventions ####
# Organize usings
dotnet_separate_import_directive_groups = false
dotnet_sort_system_directives_first = false
# this. and Me. preferences
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
# Language keywords vs BCL types preferences
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
# Modifier preferences
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
# Expression-level preferences
dotnet_style_coalesce_expression = true
dotnet_style_collection_initializer = true
dotnet_style_explicit_tuple_names = true
dotnet_style_namespace_match_folder = true
dotnet_style_null_propagation = true
dotnet_style_object_initializer = true
dotnet_style_operator_placement_when_wrapping = beginning_of_line
dotnet_style_prefer_auto_properties = true
dotnet_style_prefer_compound_assignment = true
dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
dotnet_style_prefer_conditional_expression_over_return = true
dotnet_style_prefer_inferred_anonymous_type_member_names = true
dotnet_style_prefer_inferred_tuple_names = true
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
dotnet_style_prefer_simplified_boolean_expressions = true
dotnet_style_prefer_simplified_interpolation = true
# Field preferences
dotnet_style_readonly_field = true
# Parameter preferences
dotnet_code_quality_unused_parameters = all
# Suppression preferences
dotnet_remove_unnecessary_suppression_exclusions = none
# New line preferences
dotnet_style_allow_multiple_blank_lines_experimental = false:suggestion
dotnet_style_allow_statement_immediately_after_block_experimental = true
#### C# Coding Conventions ####
# var preferences
csharp_style_var_elsewhere = true:suggestion
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
# Expression-bodied members
csharp_style_expression_bodied_accessors = true:suggestion
csharp_style_expression_bodied_constructors = false:suggestion
csharp_style_expression_bodied_indexers = true:suggestion
csharp_style_expression_bodied_lambdas = true:suggestion
csharp_style_expression_bodied_local_functions = false
csharp_style_expression_bodied_methods = true:suggestion
csharp_style_expression_bodied_operators = true:suggestion
csharp_style_expression_bodied_properties = true:suggestion
# Pattern matching preferences
csharp_style_pattern_matching_over_as_with_null_check = true
csharp_style_pattern_matching_over_is_with_cast_check = true
csharp_style_prefer_not_pattern = true
csharp_style_prefer_pattern_matching = true
csharp_style_prefer_switch_expression = true
# Null-checking preferences
csharp_style_conditional_delegate_call = true
# Modifier preferences
csharp_prefer_static_local_function = true
csharp_preferred_modifier_order = public, private, protected, internal, static, extern, new, virtual, abstract, sealed, override, readonly, unsafe, volatile, async:suggestion
# Code-block preferences
csharp_prefer_braces = when_multiline:suggestion
csharp_prefer_simple_using_statement = true
csharp_style_namespace_declarations = file_scoped:warning
# Expression-level preferences
csharp_prefer_simple_default_expression = true
csharp_style_deconstructed_variable_declaration = true
csharp_style_implicit_object_creation_when_type_is_apparent = true
csharp_style_inlined_variable_declaration = true:warning
csharp_style_pattern_local_over_anonymous_function = true
csharp_style_prefer_index_operator = true
csharp_style_prefer_null_check_over_type_check = true:warning
csharp_style_prefer_range_operator = true
csharp_style_throw_expression = true
csharp_style_unused_value_assignment_preference = discard_variable
csharp_style_unused_value_expression_statement_preference = discard_variable
# 'using' directive preferences
# New line preferences
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false:suggestion
csharp_style_allow_embedded_statements_on_same_line_experimental = true
#### C# Formatting Rules ####
# New line preferences
csharp_new_line_before_catch = true
csharp_new_line_before_else = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_open_brace = all
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_labels = one_less_than_current
csharp_indent_switch_labels = true
# 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 = false
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
# Wrapping preferences
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_statements = true
# Microsoft .NET properties
dotnet_naming_rule.constants_rule.import_to_resharper = as_predefined
dotnet_naming_rule.constants_rule.severity = suggestion
dotnet_naming_rule.constants_rule.style = upper_camel_case_style
dotnet_naming_rule.constants_rule.symbols = constants_symbols
dotnet_naming_rule.enums_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.enums_should_be_pascalcase_rule.resharper_description = enums_should_be_pascalcase
dotnet_naming_rule.enums_should_be_pascalcase_rule.resharper_guid = c054aaab-d9a2-4f0b-a78a-ce4381f13f96
dotnet_naming_rule.enums_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.enums_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.enums_should_be_pascalcase_rule.symbols = enums_should_be_pascalcase_symbols
dotnet_naming_rule.events_should_be_pascalcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.events_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.events_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.events_should_be_pascalcase_rule.symbols = events_should_be_pascalcase_symbols
dotnet_naming_rule.interfaces_should_be_ipascalcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.interfaces_should_be_ipascalcase_rule.severity = suggestion
dotnet_naming_rule.interfaces_should_be_ipascalcase_rule.style = i_upper_camel_case_style
dotnet_naming_rule.interfaces_should_be_ipascalcase_rule.symbols = interfaces_should_be_ipascalcase_symbols
dotnet_naming_rule.local_constants_should_be_camelcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.local_constants_should_be_camelcase_rule.severity = suggestion
dotnet_naming_rule.local_constants_should_be_camelcase_rule.style = lower_camel_case_style
dotnet_naming_rule.local_constants_should_be_camelcase_rule.symbols = local_constants_should_be_camelcase_symbols
dotnet_naming_rule.local_functions_should_be_pascalcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.local_functions_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.local_functions_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.local_functions_should_be_pascalcase_rule.symbols = local_functions_should_be_pascalcase_symbols
dotnet_naming_rule.local_variables_should_be_camelcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.local_variables_should_be_camelcase_rule.severity = suggestion
dotnet_naming_rule.local_variables_should_be_camelcase_rule.style = lower_camel_case_style
dotnet_naming_rule.local_variables_should_be_camelcase_rule.symbols = local_variables_should_be_camelcase_symbols
dotnet_naming_rule.methods_should_be_pascalcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.methods_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.methods_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.methods_should_be_pascalcase_rule.symbols = methods_should_be_pascalcase_symbols
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.resharper_description = non_field_members_should_be_pascalcase
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.resharper_guid = d08579fe-19f6-456f-8d82-7ed4bf0f98b3
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.non_field_members_should_be_pascalcase_rule.symbols = non_field_members_should_be_pascalcase_symbols
dotnet_naming_rule.parameters_should_be_camelcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.parameters_should_be_camelcase_rule.severity = suggestion
dotnet_naming_rule.parameters_should_be_camelcase_rule.style = lower_camel_case_style
dotnet_naming_rule.parameters_should_be_camelcase_rule.symbols = parameters_should_be_camelcase_symbols
dotnet_naming_rule.private_constants_rule.import_to_resharper = as_predefined
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_constant_fields_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.private_constant_fields_should_be_pascalcase_rule.resharper_description = private_constant_fields_should_be_pascalcase
dotnet_naming_rule.private_constant_fields_should_be_pascalcase_rule.resharper_guid = c45e4a36-2374-4392-8592-ba1b3e96f440
dotnet_naming_rule.private_constant_fields_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.private_constant_fields_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.private_constant_fields_should_be_pascalcase_rule.symbols = private_constant_fields_should_be_pascalcase_symbols
dotnet_naming_rule.private_fields_should_be_camelcase_rule.import_to_resharper = True
dotnet_naming_rule.private_fields_should_be_camelcase_rule.resharper_description = private_fields_should_be__camelcase
dotnet_naming_rule.private_fields_should_be_camelcase_rule.resharper_guid = 0a2a7d1a-5f72-4d1f-a67e-10db28f95cf0
dotnet_naming_rule.private_fields_should_be_camelcase_rule.severity = suggestion
dotnet_naming_rule.private_fields_should_be_camelcase_rule.style = lower_camel_case_style_1
dotnet_naming_rule.private_fields_should_be_camelcase_rule.symbols = private_fields_should_be_camelcase_symbols
dotnet_naming_rule.private_instance_fields_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_instance_fields_rule.severity = suggestion
dotnet_naming_rule.private_instance_fields_rule.style = lower_camel_case_style_1
dotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols
dotnet_naming_rule.private_static_fields_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_static_fields_rule.severity = suggestion
dotnet_naming_rule.private_static_fields_rule.style = lower_camel_case_style_1
dotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.resharper_description = private_static_readonly_fields_should_be_pascalcase
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.resharper_guid = c8f2d888-8a5d-4e67-82fd-8f30da831ad8
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase_rule.symbols = private_static_readonly_fields_should_be_pascalcase_symbols
dotnet_naming_rule.private_static_readonly_rule.import_to_resharper = as_predefined
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.properties_should_be_pascalcase_rule.import_to_resharper = as_predefined
dotnet_naming_rule.properties_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.properties_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.properties_should_be_pascalcase_rule.symbols = properties_should_be_pascalcase_symbols
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.resharper_description = public_constant_fields_should_be_pascalcase
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.resharper_guid = e2aa38db-7d67-4b96-9ce6-91aad21197c0
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.public_constant_fields_should_be_pascalcase_rule.symbols = public_constant_fields_should_be_pascalcase_symbols
dotnet_naming_rule.public_fields_rule.import_to_resharper = as_predefined
dotnet_naming_rule.public_fields_rule.severity = suggestion
dotnet_naming_rule.public_fields_rule.style = upper_camel_case_style
dotnet_naming_rule.public_fields_rule.symbols = public_fields_symbols
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.resharper_description = public_fields_should_be_pascalcase
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.resharper_guid = 109466f5-861f-41d6-83c0-f4bea4bc82b4
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.public_fields_should_be_pascalcase_rule.symbols = public_fields_should_be_pascalcase_symbols
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.resharper_description = public_static_readonly_fields_should_be_pascalcase
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.resharper_guid = 4e4a2c2c-415d-4af5-be0f-842aaabafc63
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase_rule.symbols = public_static_readonly_fields_should_be_pascalcase_symbols
dotnet_naming_rule.static_readonly_rule.import_to_resharper = as_predefined
dotnet_naming_rule.static_readonly_rule.severity = suggestion
dotnet_naming_rule.static_readonly_rule.style = upper_camel_case_style
dotnet_naming_rule.static_readonly_rule.symbols = static_readonly_symbols
dotnet_naming_rule.types_and_namespaces_rule.import_to_resharper = as_predefined
dotnet_naming_rule.types_and_namespaces_rule.severity = suggestion
dotnet_naming_rule.types_and_namespaces_rule.style = upper_camel_case_style
dotnet_naming_rule.types_and_namespaces_rule.symbols = types_and_namespaces_symbols
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.import_to_resharper = True
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.resharper_description = types_and_namespaces_should_be_pascalcase
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.resharper_guid = 276550b4-b3bd-4527-b40d-12bfd1bb0c97
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.severity = suggestion
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.style = upper_camel_case_style
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase_rule.symbols = types_and_namespaces_should_be_pascalcase_symbols
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.import_to_resharper = True
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.resharper_description = type_parameters_should_be_tpascalcase
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.resharper_guid = b003a653-55de-45f7-8b7c-57f2f191613c
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.severity = suggestion
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.style = t_upper_camel_case_style
dotnet_naming_rule.type_parameters_should_be_tpascalcase_rule.symbols = type_parameters_should_be_tpascalcase_symbols
dotnet_naming_rule.unity_serialized_field_rule.import_to_resharper = True
dotnet_naming_rule.unity_serialized_field_rule.resharper_description = Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule.severity = suggestion
dotnet_naming_rule.unity_serialized_field_rule.style = lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule.symbols = unity_serialized_field_symbols
dotnet_naming_rule.unity_serialized_field_rule_1.import_to_resharper = True
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_description = Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule_1.severity = suggestion
dotnet_naming_rule.unity_serialized_field_rule_1.style = lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule_1.symbols = unity_serialized_field_symbols_1
dotnet_naming_style.i_upper_camel_case_style.capitalization = pascal_case
dotnet_naming_style.i_upper_camel_case_style.required_prefix = I
dotnet_naming_style.lower_camel_case_style.capitalization = camel_case
dotnet_naming_style.lower_camel_case_style_1.capitalization = camel_case
dotnet_naming_style.lower_camel_case_style_1.required_prefix = _
dotnet_naming_style.t_upper_camel_case_style.capitalization = pascal_case
dotnet_naming_style.t_upper_camel_case_style.required_prefix = T
dotnet_naming_style.upper_camel_case_style.capitalization = pascal_case
dotnet_naming_symbols.constants_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.constants_symbols.applicable_kinds = field
dotnet_naming_symbols.constants_symbols.required_modifiers = const
dotnet_naming_symbols.enums_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.enums_should_be_pascalcase_symbols.applicable_kinds = enum
dotnet_naming_symbols.enums_should_be_pascalcase_symbols.resharper_applicable_kinds = enum
dotnet_naming_symbols.enums_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.events_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.events_should_be_pascalcase_symbols.applicable_kinds = event
dotnet_naming_symbols.events_should_be_pascalcase_symbols.resharper_applicable_kinds = event
dotnet_naming_symbols.events_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.interfaces_should_be_ipascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interfaces_should_be_ipascalcase_symbols.applicable_kinds = interface
dotnet_naming_symbols.interfaces_should_be_ipascalcase_symbols.resharper_applicable_kinds = interface
dotnet_naming_symbols.interfaces_should_be_ipascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.local_constants_should_be_camelcase_symbols.applicable_accessibilities = local
dotnet_naming_symbols.local_constants_should_be_camelcase_symbols.applicable_kinds = local
dotnet_naming_symbols.local_constants_should_be_camelcase_symbols.required_modifiers = const
dotnet_naming_symbols.local_constants_should_be_camelcase_symbols.resharper_applicable_kinds = local_constant
dotnet_naming_symbols.local_constants_should_be_camelcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.local_functions_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.local_functions_should_be_pascalcase_symbols.applicable_kinds = local_function
dotnet_naming_symbols.local_functions_should_be_pascalcase_symbols.resharper_applicable_kinds = local_function
dotnet_naming_symbols.local_functions_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.local_variables_should_be_camelcase_symbols.applicable_accessibilities = local
dotnet_naming_symbols.local_variables_should_be_camelcase_symbols.applicable_kinds = local
dotnet_naming_symbols.local_variables_should_be_camelcase_symbols.resharper_applicable_kinds = local
dotnet_naming_symbols.local_variables_should_be_camelcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.methods_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.methods_should_be_pascalcase_symbols.applicable_kinds = method
dotnet_naming_symbols.methods_should_be_pascalcase_symbols.resharper_applicable_kinds = method
dotnet_naming_symbols.methods_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.non_field_members_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members_should_be_pascalcase_symbols.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members_should_be_pascalcase_symbols.resharper_applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.parameters_should_be_camelcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.parameters_should_be_camelcase_symbols.applicable_kinds = parameter
dotnet_naming_symbols.parameters_should_be_camelcase_symbols.resharper_applicable_kinds = parameter
dotnet_naming_symbols.parameters_should_be_camelcase_symbols.resharper_required_modifiers = any
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_constant_fields_should_be_pascalcase_symbols.applicable_accessibilities = local, private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_constant_fields_should_be_pascalcase_symbols.applicable_kinds = field
dotnet_naming_symbols.private_constant_fields_should_be_pascalcase_symbols.required_modifiers = const
dotnet_naming_symbols.private_constant_fields_should_be_pascalcase_symbols.resharper_applicable_kinds = constant_field
dotnet_naming_symbols.private_constant_fields_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_fields_should_be_camelcase_symbols.applicable_accessibilities = local, private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_fields_should_be_camelcase_symbols.applicable_kinds = field
dotnet_naming_symbols.private_fields_should_be_camelcase_symbols.resharper_applicable_kinds = any_field
dotnet_naming_symbols.private_fields_should_be_camelcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static
dotnet_naming_symbols.private_static_readonly_fields_should_be_pascalcase_symbols.applicable_accessibilities = local, private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_static_readonly_fields_should_be_pascalcase_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_fields_should_be_pascalcase_symbols.required_modifiers = readonly, static
dotnet_naming_symbols.private_static_readonly_fields_should_be_pascalcase_symbols.resharper_applicable_kinds = readonly_field
dotnet_naming_symbols.private_static_readonly_fields_should_be_pascalcase_symbols.resharper_required_modifiers = static
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.properties_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.properties_should_be_pascalcase_symbols.applicable_kinds = property
dotnet_naming_symbols.properties_should_be_pascalcase_symbols.resharper_applicable_kinds = property
dotnet_naming_symbols.properties_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.public_constant_fields_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal
dotnet_naming_symbols.public_constant_fields_should_be_pascalcase_symbols.applicable_kinds = field
dotnet_naming_symbols.public_constant_fields_should_be_pascalcase_symbols.required_modifiers = const
dotnet_naming_symbols.public_constant_fields_should_be_pascalcase_symbols.resharper_applicable_kinds = constant_field
dotnet_naming_symbols.public_constant_fields_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.public_fields_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal
dotnet_naming_symbols.public_fields_should_be_pascalcase_symbols.applicable_kinds = field
dotnet_naming_symbols.public_fields_should_be_pascalcase_symbols.resharper_applicable_kinds = any_field
dotnet_naming_symbols.public_fields_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.public_fields_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.public_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.public_static_readonly_fields_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal
dotnet_naming_symbols.public_static_readonly_fields_should_be_pascalcase_symbols.applicable_kinds = field
dotnet_naming_symbols.public_static_readonly_fields_should_be_pascalcase_symbols.required_modifiers = readonly, static
dotnet_naming_symbols.public_static_readonly_fields_should_be_pascalcase_symbols.resharper_applicable_kinds = readonly_field
dotnet_naming_symbols.public_static_readonly_fields_should_be_pascalcase_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.static_readonly_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.static_readonly_symbols.required_modifiers = static, readonly
dotnet_naming_symbols.types_and_namespaces_should_be_pascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types_and_namespaces_should_be_pascalcase_symbols.applicable_kinds = namespace, class, struct, interface, enum
dotnet_naming_symbols.types_and_namespaces_should_be_pascalcase_symbols.resharper_applicable_kinds = namespace, class, struct, interface, enum
dotnet_naming_symbols.types_and_namespaces_should_be_pascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_accessibilities = *
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_kinds = namespace, class, struct, enum, delegate
dotnet_naming_symbols.type_parameters_should_be_tpascalcase_symbols.applicable_accessibilities = local, public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.type_parameters_should_be_tpascalcase_symbols.applicable_kinds = namespace
dotnet_naming_symbols.type_parameters_should_be_tpascalcase_symbols.resharper_applicable_kinds = namespace
dotnet_naming_symbols.type_parameters_should_be_tpascalcase_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities = *
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds =
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds = unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers = instance
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_accessibilities = *
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_kinds =
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_applicable_kinds = unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_required_modifiers = instance
# ReSharper properties
resharper_braces_for_dowhile = required
resharper_braces_for_fixed = required
resharper_braces_for_ifelse = not_required_for_both
resharper_braces_for_lock = required
resharper_braces_for_using = required
resharper_csharp_naming_rule.constants = AaBb
resharper_csharp_naming_rule.event = AaBb
resharper_csharp_naming_rule.interfaces = I + AaBb
resharper_csharp_naming_rule.local_constants = aaBb
resharper_csharp_naming_rule.method = AaBb
resharper_csharp_naming_rule.private_constants = AaBb
resharper_csharp_naming_rule.private_instance_fields = _ + aaBb
resharper_csharp_naming_rule.private_static_fields = _ + aaBb
resharper_csharp_naming_rule.private_static_readonly = AaBb
resharper_csharp_naming_rule.property = AaBb
resharper_csharp_naming_rule.public_fields = AaBb
resharper_csharp_naming_rule.static_readonly = AaBb
resharper_csharp_naming_rule.types_and_namespaces = AaBb
resharper_enforce_line_ending_style = true
resharper_use_indent_from_vs = false
# ReSharper inspection severities
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_enforce_do_while_statement_braces_highlighting = none
resharper_enforce_fixed_statement_braces_highlighting = none
resharper_enforce_foreach_statement_braces_highlighting = none
resharper_enforce_for_statement_braces_highlighting = none
resharper_enforce_if_statement_braces_highlighting = none
resharper_enforce_lock_statement_braces_highlighting = none
resharper_enforce_using_statement_braces_highlighting = none
resharper_enforce_while_statement_braces_highlighting = none
resharper_inconsistent_naming_highlighting = suggestion
resharper_redundant_base_qualifier_highlighting = warning
resharper_remove_redundant_braces_highlighting = none
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_web_config_module_not_resolved_highlighting = warning
resharper_web_config_type_not_resolved_highlighting = warning
resharper_web_config_wrong_module_highlighting = warning
#### Naming styles ####
[*.{cs,vb}]
# Naming rules
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase.symbols = types_and_namespaces
dotnet_naming_rule.types_and_namespaces_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.interfaces_should_be_ipascalcase.severity = suggestion
dotnet_naming_rule.interfaces_should_be_ipascalcase.symbols = interfaces
dotnet_naming_rule.interfaces_should_be_ipascalcase.style = ipascalcase
dotnet_naming_rule.type_parameters_should_be_tpascalcase.severity = suggestion
dotnet_naming_rule.type_parameters_should_be_tpascalcase.symbols = type_parameters
dotnet_naming_rule.type_parameters_should_be_tpascalcase.style = tpascalcase
dotnet_naming_rule.methods_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.methods_should_be_pascalcase.symbols = methods
dotnet_naming_rule.methods_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.properties_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.properties_should_be_pascalcase.symbols = properties
dotnet_naming_rule.properties_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.events_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.events_should_be_pascalcase.symbols = events
dotnet_naming_rule.events_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.local_variables_should_be_camelcase.severity = suggestion
dotnet_naming_rule.local_variables_should_be_camelcase.symbols = local_variables
dotnet_naming_rule.local_variables_should_be_camelcase.style = camelcase
dotnet_naming_rule.local_constants_should_be_camelcase.severity = suggestion
dotnet_naming_rule.local_constants_should_be_camelcase.symbols = local_constants
dotnet_naming_rule.local_constants_should_be_camelcase.style = camelcase
dotnet_naming_rule.parameters_should_be_camelcase.severity = suggestion
dotnet_naming_rule.parameters_should_be_camelcase.symbols = parameters
dotnet_naming_rule.parameters_should_be_camelcase.style = camelcase
dotnet_naming_rule.public_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.public_fields_should_be_pascalcase.symbols = public_fields
dotnet_naming_rule.public_fields_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.private_fields_should_be__camelcase.severity = suggestion
dotnet_naming_rule.private_fields_should_be__camelcase.symbols = private_fields
dotnet_naming_rule.private_fields_should_be__camelcase.style = _camelcase
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.symbols = public_constant_fields
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.private_constant_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.private_constant_fields_should_be_pascalcase.symbols = private_constant_fields
dotnet_naming_rule.private_constant_fields_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.symbols = public_static_readonly_fields
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.symbols = private_static_readonly_fields
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.enums_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.enums_should_be_pascalcase.symbols = enums
dotnet_naming_rule.enums_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.local_functions_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.local_functions_should_be_pascalcase.symbols = local_functions
dotnet_naming_rule.local_functions_should_be_pascalcase.style = pascalcase
dotnet_naming_rule.non_field_members_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascalcase.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascalcase.style = pascalcase
# Symbol specifications
dotnet_naming_symbols.interfaces.applicable_kinds = interface
dotnet_naming_symbols.interfaces.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interfaces.required_modifiers =
dotnet_naming_symbols.enums.applicable_kinds = enum
dotnet_naming_symbols.enums.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.enums.required_modifiers =
dotnet_naming_symbols.events.applicable_kinds = event
dotnet_naming_symbols.events.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.events.required_modifiers =
dotnet_naming_symbols.methods.applicable_kinds = method
dotnet_naming_symbols.methods.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.methods.required_modifiers =
dotnet_naming_symbols.properties.applicable_kinds = property
dotnet_naming_symbols.properties.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.properties.required_modifiers =
dotnet_naming_symbols.public_fields.applicable_kinds = field
dotnet_naming_symbols.public_fields.applicable_accessibilities = public, internal
dotnet_naming_symbols.public_fields.required_modifiers =
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_fields.required_modifiers =
dotnet_naming_symbols.private_static_fields.applicable_kinds = field
dotnet_naming_symbols.private_static_fields.applicable_accessibilities = private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_static_fields.required_modifiers = static
dotnet_naming_symbols.types_and_namespaces.applicable_kinds = namespace, class, struct, interface, enum
dotnet_naming_symbols.types_and_namespaces.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types_and_namespaces.required_modifiers =
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =
dotnet_naming_symbols.type_parameters.applicable_kinds = namespace
dotnet_naming_symbols.type_parameters.applicable_accessibilities = *
dotnet_naming_symbols.type_parameters.required_modifiers =
dotnet_naming_symbols.private_constant_fields.applicable_kinds = field
dotnet_naming_symbols.private_constant_fields.applicable_accessibilities = private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_constant_fields.required_modifiers = const
dotnet_naming_symbols.local_variables.applicable_kinds = local
dotnet_naming_symbols.local_variables.applicable_accessibilities = local
dotnet_naming_symbols.local_variables.required_modifiers =
dotnet_naming_symbols.local_constants.applicable_kinds = local
dotnet_naming_symbols.local_constants.applicable_accessibilities = local
dotnet_naming_symbols.local_constants.required_modifiers = const
dotnet_naming_symbols.parameters.applicable_kinds = parameter
dotnet_naming_symbols.parameters.applicable_accessibilities = *
dotnet_naming_symbols.parameters.required_modifiers =
dotnet_naming_symbols.public_constant_fields.applicable_kinds = field
dotnet_naming_symbols.public_constant_fields.applicable_accessibilities = public, internal
dotnet_naming_symbols.public_constant_fields.required_modifiers = const
dotnet_naming_symbols.public_static_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.public_static_readonly_fields.applicable_accessibilities = public, internal
dotnet_naming_symbols.public_static_readonly_fields.required_modifiers = readonly, static
dotnet_naming_symbols.private_static_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_fields.applicable_accessibilities = private, protected, protected_internal, private_protected
dotnet_naming_symbols.private_static_readonly_fields.required_modifiers = readonly, static
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
dotnet_naming_symbols.local_functions.applicable_accessibilities = *
dotnet_naming_symbols.local_functions.required_modifiers =
# Naming styles
dotnet_naming_style.pascalcase.required_prefix =
dotnet_naming_style.pascalcase.required_suffix =
dotnet_naming_style.pascalcase.word_separator =
dotnet_naming_style.pascalcase.capitalization = pascal_case
dotnet_naming_style.ipascalcase.required_prefix = I
dotnet_naming_style.ipascalcase.required_suffix =
dotnet_naming_style.ipascalcase.word_separator =
dotnet_naming_style.ipascalcase.capitalization = pascal_case
dotnet_naming_style.tpascalcase.required_prefix = T
dotnet_naming_style.tpascalcase.required_suffix =
dotnet_naming_style.tpascalcase.word_separator =
dotnet_naming_style.tpascalcase.capitalization = pascal_case
dotnet_naming_style._camelcase.required_prefix = _
dotnet_naming_style._camelcase.required_suffix =
dotnet_naming_style._camelcase.word_separator =
dotnet_naming_style._camelcase.capitalization = camel_case
dotnet_naming_style.camelcase.required_prefix =
dotnet_naming_style.camelcase.required_suffix =
dotnet_naming_style.camelcase.word_separator =
dotnet_naming_style.camelcase.capitalization = camel_case
dotnet_naming_style.s_camelcase.required_prefix = s_
dotnet_naming_style.s_camelcase.required_suffix =
dotnet_naming_style.s_camelcase.word_separator =
dotnet_naming_style.s_camelcase.capitalization = camel_case
[*.{appxmanifest,asax,ascx,aspx,axaml,build,c,c++,cc,cginc,compute,cp,cpp,cs,cshtml,cu,cuh,cxx,dtd,fs,fsi,fsscript,fsx,fx,fxh,h,hh,hlsl,hlsli,hlslinc,hpp,hxx,inc,inl,ino,ipp,master,ml,mli,mpp,mq4,mq5,mqh,nuspec,paml,razor,resw,resx,shader,skin,tpp,usf,ush,vb,xaml,xamlx,xoml,xsd}]
indent_style = space
indent_size = 4
tab_width = 4