forked from aers/FFXIVClientStructs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
3165 lines (3143 loc) · 214 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
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
root = true
# All files
[*]
end_of_line = crlf
indent_style = space
charset = utf-8
# XML project files
[*.{csproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
# XML config files
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2
[*.cs]
indent_size = 4
insert_final_newline = true
###############################
# .NET Coding Conventions #
###############################
# Organize usings
dotnet_sort_system_directives_first = true
# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary
###############################
# C# Coding Conventions #
###############################
# namespace preferences
csharp_style_namespace_declarations = file_scoped:warning
# var preferences
csharp_style_var_for_built_in_types = true
csharp_style_var_when_type_is_apparent = true
csharp_style_var_elsewhere = true
# Expression-bodied members
csharp_style_expression_bodied_operators = true
# Expression-level preferences
csharp_prefer_braces = false
csharp_style_prefer_utf8_string_literals = false
# Using placement
csharp_using_directive_placement = outside_namespace
dotnet_sort_system_directives_first = true
###############################
# C# Formatting Rules #
###############################
# Indentation preferences
csharp_indent_labels = flush_left
csharp_indent_braces = false
csharp_indent_switch_labels = true
# Sorting preferences
csharp_preferred_modifier_order = private, public, protected, internal, file, new, sealed, abstract, virtual, static, readonly, override, extern, unsafe, volatile, async, required:suggestion
# Braces
csharp_prefer_braces = false
# New-line options
csharp_new_line_before_open_brace = none
csharp_new_line_before_else = false
csharp_new_line_before_catch = false
csharp_new_line_before_finally = false
csharp_new_line_before_members_in_object_initializers = false
csharp_new_line_before_open_brace = none
csharp_new_line_between_query_expression_clauses = true
# Spaces
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_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
# just force all resharper and visual studio settings to be the same across users
# Microsoft .NET properties
csharp_preserve_single_line_blocks = true
dotnet_separate_import_directive_groups = false
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity: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_accessor_owner_body = expression_body
resharper_alignment_tab_fill_style = use_spaces
resharper_align_first_arg_by_paren = false
resharper_align_linq_query = false
resharper_align_multiline_array_and_object_initializer = false
resharper_align_multiline_array_initializer = true
resharper_align_multiline_binary_patterns = false
resharper_align_multiline_ctor_init = true
resharper_align_multiline_expression_braces = false
resharper_align_multiline_implements_list = true
resharper_align_multiline_list_pattern = false
resharper_align_multiline_property_pattern = false
resharper_align_multiline_statement_conditions = true
resharper_align_multiline_switch_expression = false
resharper_align_multiline_type_argument = true
resharper_align_multiline_type_parameter = true
resharper_align_multline_type_parameter_constrains = false
resharper_align_multline_type_parameter_list = false
resharper_align_ternary = align_not_nested
resharper_align_tuple_components = false
resharper_allow_alias = true
resharper_allow_comment_after_lbrace = false
resharper_allow_far_alignment = false
resharper_always_use_end_of_line_brace_style = false
resharper_apply_auto_detected_rules = true
resharper_apply_on_completion = false
resharper_arguments_anonymous_function = positional
resharper_arguments_literal = positional
resharper_arguments_named = positional
resharper_arguments_other = positional
resharper_arguments_skip_single = false
resharper_arguments_string_literal = positional
resharper_attribute_style = do_not_touch
resharper_autodetect_indent_settings = false
resharper_blank_lines_after_access_specifier = 0
resharper_blank_lines_after_block_statements = 0
resharper_blank_lines_after_case = 0
resharper_blank_lines_after_control_transfer_statements = 0
resharper_blank_lines_after_file_scoped_namespace_directive = 1
resharper_blank_lines_after_imports = 1
resharper_blank_lines_after_multiline_statements = 0
resharper_blank_lines_after_options = 1
resharper_blank_lines_after_start_comment = 1
resharper_blank_lines_after_using_list = 1
resharper_blank_lines_around_accessor = 0
resharper_blank_lines_around_auto_property = 0
resharper_blank_lines_around_block_case_section = 0
resharper_blank_lines_around_class_definition = 1
resharper_blank_lines_around_function_declaration = 0
resharper_blank_lines_around_function_definition = 1
resharper_blank_lines_around_global_attribute = 0
resharper_blank_lines_around_local_method = 1
resharper_blank_lines_around_multiline_case_section = 0
resharper_blank_lines_around_namespace = 1
resharper_blank_lines_around_other_declaration = 0
resharper_blank_lines_around_property = 0
resharper_blank_lines_around_razor_functions = 1
resharper_blank_lines_around_razor_helpers = 1
resharper_blank_lines_around_razor_sections = 1
resharper_blank_lines_around_region = 1
resharper_blank_lines_around_single_line_accessor = 0
resharper_blank_lines_around_single_line_auto_property = 0
resharper_blank_lines_around_single_line_field = 0
resharper_blank_lines_around_single_line_function_definition = 0
resharper_blank_lines_around_single_line_invocable = 0
resharper_blank_lines_around_single_line_local_method = 0
resharper_blank_lines_around_single_line_property = 0
resharper_blank_lines_around_single_line_type = 1
resharper_blank_lines_around_type = 1
resharper_blank_lines_before_access_specifier = 1
resharper_blank_lines_before_block_statements = 0
resharper_blank_lines_before_case = 0
resharper_blank_lines_before_control_transfer_statements = 0
resharper_blank_lines_before_multiline_statements = 0
resharper_blank_lines_before_single_line_comment = 0
resharper_blank_lines_inside_namespace = 0
resharper_blank_lines_inside_region = 1
resharper_blank_lines_inside_type = 0
resharper_blank_line_after_pi = true
resharper_braces_for_dowhile = required
resharper_braces_for_for = required_for_multiline
resharper_braces_for_foreach = required
resharper_braces_for_lock = required
resharper_braces_for_using = required
resharper_break_template_declaration = line_break
resharper_builtin_type_apply_to_native_integer = false
resharper_can_use_global_alias = true
resharper_configure_await_analysis_mode = disabled
resharper_constructor_or_destructor_body = block_body
resharper_continuous_indent_multiplier = 1
resharper_continuous_line_indent = single
resharper_cpp_align_multiline_argument = true
resharper_cpp_align_multiline_binary_expressions_chain = false
resharper_cpp_align_multiline_calls_chain = true
resharper_cpp_align_multiline_extends_list = true
resharper_cpp_align_multiline_for_stmt = true
resharper_cpp_align_multiline_parameter = true
resharper_cpp_align_multiple_declaration = true
resharper_cpp_anonymous_method_declaration_braces = next_line
resharper_cpp_case_block_braces = next_line_shifted_2
resharper_cpp_indent_switch_labels = false
resharper_cpp_insert_final_newline = true
resharper_cpp_invocable_declaration_braces = next_line
resharper_cpp_max_line_length = 2000
resharper_cpp_new_line_before_catch = true
resharper_cpp_new_line_before_else = true
resharper_cpp_new_line_before_while = true
resharper_cpp_other_braces = next_line
resharper_cpp_remove_blank_lines_near_braces_in_code = true
resharper_cpp_remove_blank_lines_near_braces_in_declarations = true
resharper_cpp_space_after_unary_operator = false
resharper_cpp_space_around_binary_operator = true
resharper_cpp_type_declaration_braces = next_line
resharper_cpp_wrap_arguments_style = wrap_if_long
resharper_cpp_wrap_lines = true
resharper_csharp_align_multiline_argument = false
resharper_csharp_align_multiline_binary_expressions_chain = true
resharper_csharp_align_multiline_calls_chain = false
resharper_csharp_align_multiline_expression = false
resharper_csharp_align_multiline_extends_list = false
resharper_csharp_align_multiline_for_stmt = false
resharper_csharp_align_multiline_parameter = false
resharper_csharp_align_multiple_declaration = false
resharper_csharp_blank_lines_around_field = 0
resharper_csharp_blank_lines_around_invocable = 0
resharper_csharp_insert_final_newline = true
resharper_csharp_max_line_length = 608
resharper_csharp_naming_rule.enum_member = AaBb
resharper_csharp_naming_rule.method_property_event = AaBb
resharper_csharp_naming_rule.other = AaBb
resharper_csharp_new_line_before_while = false
resharper_csharp_other_braces = end_of_line
resharper_csharp_prefer_qualified_reference = false
resharper_csharp_remove_blank_lines_near_braces_in_code = false
resharper_csharp_remove_blank_lines_near_braces_in_declarations = false
resharper_csharp_space_after_unary_operator = false
resharper_csharp_wrap_arguments_style = chop_if_long
resharper_csharp_wrap_lines = true
resharper_cxxcli_property_declaration_braces = next_line
resharper_default_exception_variable_name = e
resharper_default_value_when_type_evident = default_literal
resharper_default_value_when_type_not_evident = default_literal
resharper_delete_quotes_from_solid_values = false
resharper_disable_blank_line_changes = false
resharper_disable_formatter = false
resharper_disable_indenter = false
resharper_disable_int_align = false
resharper_disable_line_break_changes = false
resharper_disable_line_break_removal = false
resharper_disable_space_changes = false
resharper_disable_space_changes_before_trailing_comment = false
resharper_dont_remove_extra_blank_lines = false
resharper_empty_block_style = multiline
resharper_enable_wrapping = false
resharper_enforce_line_ending_style = false
resharper_event_handler_pattern_long = $object$On$event$
resharper_event_handler_pattern_short = On$event$
resharper_export_declaration_braces = next_line
resharper_expression_braces = inside
resharper_expression_pars = inside
resharper_extra_spaces = remove_all
resharper_force_attribute_style = separate
resharper_force_chop_compound_do_expression = false
resharper_force_chop_compound_if_expression = false
resharper_force_chop_compound_while_expression = false
resharper_formatter_off_tag =
resharper_formatter_on_tag =
resharper_formatter_tags_accept_regexp = false
resharper_formatter_tags_enabled = false
resharper_format_leading_spaces_decl = false
resharper_free_block_braces = next_line
resharper_function_declaration_return_type_style = do_not_change
resharper_function_definition_return_type_style = do_not_change
resharper_generator_mode = false
resharper_html_attribute_indent = align_by_first_attribute
resharper_html_insert_final_newline = false
resharper_html_linebreak_before_elements = body,div,p,form,h1,h2,h3
resharper_html_max_blank_lines_between_tags = 2
resharper_html_max_line_length = 120
resharper_html_pi_attribute_style = on_single_line
resharper_html_space_before_self_closing = false
resharper_html_wrap_lines = true
resharper_ignore_space_preservation = false
resharper_include_prefix_comment_in_indent = false
resharper_indent_access_specifiers_from_class = false
resharper_indent_aligned_ternary = true
resharper_indent_anonymous_method_block = false
resharper_indent_braces_inside_statement_conditions = true
resharper_indent_case_from_select = true
resharper_indent_child_elements = OneIndent
resharper_indent_class_members_from_access_specifiers = false
resharper_indent_comment = true
resharper_indent_export_declaration_members = true
resharper_indent_inside_namespace = true
resharper_indent_invocation_pars = inside
resharper_indent_method_decl_pars = inside
resharper_indent_nested_fixed_stmt = false
resharper_indent_nested_foreach_stmt = false
resharper_indent_nested_for_stmt = false
resharper_indent_nested_lock_stmt = false
resharper_indent_nested_usings_stmt = false
resharper_indent_nested_while_stmt = false
resharper_indent_pars = inside
resharper_indent_preprocessor_directives = none
resharper_indent_preprocessor_if = no_indent
resharper_indent_preprocessor_other = no_indent
resharper_indent_preprocessor_region = usual_indent
resharper_indent_statement_pars = inside
resharper_indent_text = OneIndent
resharper_indent_typearg_angles = inside
resharper_indent_typeparam_angles = inside
resharper_indent_type_constraints = true
resharper_indent_wrapped_function_names = false
resharper_instance_members_qualify_declared_in = this_class, base_class
resharper_int_align = false
resharper_int_align_comments = false
resharper_int_align_declaration_names = false
resharper_int_align_enum_initializers = false
resharper_int_align_eq = false
resharper_int_align_fix_in_adjacent = true
resharper_keep_blank_lines_in_code = 2
resharper_keep_blank_lines_in_declarations = 2
resharper_keep_existing_attribute_arrangement = true
resharper_keep_existing_declaration_parens_arrangement = true
resharper_keep_existing_embedded_arrangement = true
resharper_keep_existing_embedded_block_arrangement = false
resharper_keep_existing_enum_arrangement = false
resharper_keep_existing_expr_member_arrangement = true
resharper_keep_existing_invocation_parens_arrangement = true
resharper_keep_existing_list_patterns_arrangement = true
resharper_keep_existing_property_patterns_arrangement = true
resharper_keep_existing_switch_expression_arrangement = true
resharper_keep_nontrivial_alias = true
resharper_keep_user_linebreaks = true
resharper_keep_user_wrapping = true
resharper_linebreaks_around_razor_statements = true
resharper_linebreaks_inside_tags_for_elements_longer_than = 2147483647
resharper_linebreaks_inside_tags_for_elements_with_child_elements = true
resharper_linebreaks_inside_tags_for_multiline_elements = true
resharper_linebreak_before_all_elements = false
resharper_linebreak_before_multiline_elements = true
resharper_linebreak_before_singleline_elements = false
resharper_line_break_after_colon_in_member_initializer_lists = do_not_change
resharper_line_break_after_comma_in_member_initializer_lists = false
resharper_line_break_after_init_statement = do_not_change
resharper_line_break_before_comma_in_member_initializer_lists = false
resharper_line_break_before_requires_clause = do_not_change
resharper_linkage_specification_braces = end_of_line
resharper_linkage_specification_indentation = none
resharper_local_function_body = block_body
resharper_macro_block_begin =
resharper_macro_block_end =
resharper_max_array_initializer_elements_on_line = 10000
resharper_max_attribute_length_for_same_line = 38
resharper_max_enum_members_on_line = 3
resharper_max_formal_parameters_on_line = 10000
resharper_max_initializer_elements_on_line = 4
resharper_max_invocation_arguments_on_line = 10000
resharper_member_initializer_list_style = do_not_change
resharper_method_or_operator_body = expression_body
resharper_namespace_declaration_braces = next_line
resharper_namespace_indentation = all
resharper_nested_ternary_style = compact
resharper_new_line_before_enumerators = true
resharper_normalize_tag_names = false
resharper_no_indent_inside_elements = html,body,thead,tbody,tfoot
resharper_no_indent_inside_if_element_longer_than = 200
resharper_null_checking_pattern_style = not_null_pattern
resharper_object_creation_when_type_evident = target_typed
resharper_object_creation_when_type_not_evident = explicitly_typed
resharper_old_engine = false
resharper_outdent_binary_ops = false
resharper_outdent_binary_pattern_ops = false
resharper_outdent_commas = false
resharper_outdent_dots = false
resharper_outdent_namespace_member = false
resharper_outdent_statement_labels = true
resharper_outdent_ternary_ops = false
resharper_parentheses_non_obvious_operations = none, shift, bitwise_and, bitwise_exclusive_or, bitwise_inclusive_or, bitwise
resharper_parentheses_redundancy_style = remove_if_not_clarifies_precedence
resharper_parentheses_same_type_operations = false
resharper_pi_attributes_indent = align_by_first_attribute
resharper_place_accessorholder_attribute_on_same_line = if_owner_is_single_line
resharper_place_accessor_attribute_on_same_line = if_owner_is_single_line
resharper_place_comments_at_first_column = false
resharper_place_constructor_initializer_on_same_line = true
resharper_place_event_attribute_on_same_line = false
resharper_place_expr_accessor_on_single_line = true
resharper_place_expr_method_on_single_line = true
resharper_place_expr_property_on_single_line = true
resharper_place_field_attribute_on_same_line = true
resharper_place_linq_into_on_new_line = true
resharper_place_method_attribute_on_same_line = false
resharper_place_namespace_definitions_on_same_line = false
resharper_place_property_attribute_on_same_line = false
resharper_place_record_field_attribute_on_same_line = if_owner_is_single_line
resharper_place_simple_case_statement_on_same_line = false
resharper_place_simple_embedded_statement_on_same_line = if_owner_is_single_line
resharper_place_simple_initializer_on_single_line = true
resharper_place_simple_list_pattern_on_single_line = true
resharper_place_simple_property_pattern_on_single_line = true
resharper_place_simple_switch_expression_on_single_line = false
resharper_place_type_attribute_on_same_line = false
resharper_place_type_constraints_on_same_line = true
resharper_prefer_explicit_discard_declaration = false
resharper_prefer_separate_deconstructed_variables_declaration = false
resharper_preserve_spaces_inside_tags = pre,textarea
resharper_qualified_using_at_nested_scope = false
resharper_quote_style = doublequoted
resharper_razor_prefer_qualified_reference = true
resharper_remove_blank_lines_near_braces = false
resharper_remove_this_qualifier = true
resharper_requires_expression_braces = next_line
resharper_resx_attribute_indent = single_indent
resharper_resx_insert_final_newline = false
resharper_resx_linebreak_before_elements =
resharper_resx_max_blank_lines_between_tags = 0
resharper_resx_max_line_length = 2147483647
resharper_resx_pi_attribute_style = do_not_touch
resharper_resx_space_before_self_closing = false
resharper_resx_wrap_lines = false
resharper_resx_wrap_tags_and_pi = false
resharper_resx_wrap_text = false
resharper_show_autodetect_configure_formatting_tip = true
resharper_simple_block_style = do_not_change
resharper_simple_case_statement_style = do_not_change
resharper_simple_embedded_statement_style = do_not_change
resharper_sort_attributes = false
resharper_sort_class_selectors = false
resharper_sort_usings = true
resharper_sort_usings_lowercase_first = false
resharper_spaces_around_eq_in_attribute = false
resharper_spaces_around_eq_in_pi_attribute = false
resharper_spaces_inside_tags = false
resharper_space_after_attributes = true
resharper_space_after_attribute_target_colon = true
resharper_space_after_cast = false
resharper_space_after_colon = true
resharper_space_after_colon_in_case = true
resharper_space_after_colon_in_inheritance_clause = true
resharper_space_after_comma = true
resharper_space_after_ellipsis_in_parameter_pack = true
resharper_space_after_for_colon = true
resharper_space_after_keywords_in_control_flow_statements = true
resharper_space_after_last_attribute = false
resharper_space_after_last_pi_attribute = false
resharper_space_after_operator_keyword = true
resharper_space_after_operator_not = false
resharper_space_after_ptr_in_data_member = true
resharper_space_after_ptr_in_data_members = false
resharper_space_after_ptr_in_method = true
resharper_space_after_ptr_in_nested_declarator = false
resharper_space_after_ref_in_data_member = true
resharper_space_after_ref_in_data_members = false
resharper_space_after_ref_in_method = true
resharper_space_after_semicolon_in_for_statement = true
resharper_space_after_ternary_colon = true
resharper_space_after_ternary_quest = true
resharper_space_after_triple_slash = true
resharper_space_after_type_parameter_constraint_colon = true
resharper_space_around_additive_op = true
resharper_space_around_alias_eq = true
resharper_space_around_assignment_op = true
resharper_space_around_assignment_operator = true
resharper_space_around_deref_in_trailing_return_type = true
resharper_space_around_lambda_arrow = true
resharper_space_around_member_access_operator = false
resharper_space_around_relational_op = true
resharper_space_around_shift_op = true
resharper_space_around_stmt_colon = true
resharper_space_around_ternary_operator = true
resharper_space_before_array_rank_parentheses = false
resharper_space_before_attribute_target_colon = false
resharper_space_before_checked_parentheses = false
resharper_space_before_colon = false
resharper_space_before_colon_in_case = false
resharper_space_before_colon_in_inheritance_clause = true
resharper_space_before_comma = false
resharper_space_before_default_parentheses = false
resharper_space_before_ellipsis_in_parameter_pack = false
resharper_space_before_empty_invocation_parentheses = false
resharper_space_before_empty_method_parentheses = false
resharper_space_before_for_colon = true
resharper_space_before_initializer_braces = false
resharper_space_before_invocation_parentheses = false
resharper_space_before_label_colon = false
resharper_space_before_lambda_parentheses = false
resharper_space_before_method_parentheses = false
resharper_space_before_nameof_parentheses = false
resharper_space_before_new_parentheses = false
resharper_space_before_nullable_mark = false
resharper_space_before_open_square_brackets = false
resharper_space_before_pointer_asterik_declaration = false
resharper_space_before_postfix_operator = false
resharper_space_before_ptr_in_abstract_decl = false
resharper_space_before_ptr_in_data_member = false
resharper_space_before_ptr_in_data_members = true
resharper_space_before_ptr_in_method = false
resharper_space_before_ref_in_abstract_decl = false
resharper_space_before_ref_in_data_member = false
resharper_space_before_ref_in_data_members = true
resharper_space_before_ref_in_method = false
resharper_space_before_semicolon = false
resharper_space_before_semicolon_in_for_statement = false
resharper_space_before_singleline_accessorholder = true
resharper_space_before_sizeof_parentheses = false
resharper_space_before_template_args = false
resharper_space_before_template_params = true
resharper_space_before_ternary_colon = true
resharper_space_before_ternary_quest = true
resharper_space_before_trailing_comment = true
resharper_space_before_typeof_parentheses = false
resharper_space_before_type_argument_angle = false
resharper_space_before_type_parameter_angle = false
resharper_space_before_type_parameter_constraint_colon = true
resharper_space_before_type_parameter_parentheses = true
resharper_space_between_accessors_in_singleline_property = true
resharper_space_between_attribute_sections = true
resharper_space_between_closing_angle_brackets_in_template_args = false
resharper_space_between_keyword_and_expression = true
resharper_space_between_keyword_and_type = true
resharper_space_between_method_call_empty_parameter_list_parentheses = false
resharper_space_between_method_call_name_and_opening_parenthesis = false
resharper_space_between_method_call_parameter_list_parentheses = false
resharper_space_between_method_declaration_empty_parameter_list_parentheses = false
resharper_space_between_method_declaration_name_and_open_parenthesis = false
resharper_space_between_method_declaration_parameter_list_parentheses = false
resharper_space_between_parentheses_of_control_flow_statements = false
resharper_space_between_square_brackets = false
resharper_space_between_typecast_parentheses = false
resharper_space_in_singleline_accessorholder = true
resharper_space_in_singleline_anonymous_method = true
resharper_space_in_singleline_method = true
resharper_space_near_postfix_and_prefix_op = false
resharper_space_within_array_initialization_braces = false
resharper_space_within_array_rank_empty_parentheses = false
resharper_space_within_array_rank_parentheses = false
resharper_space_within_attribute_angles = false
resharper_space_within_checked_parentheses = false
resharper_space_within_declaration_parentheses = false
resharper_space_within_default_parentheses = false
resharper_space_within_empty_braces = true
resharper_space_within_empty_initializer_braces = false
resharper_space_within_empty_invocation_parentheses = false
resharper_space_within_empty_method_parentheses = false
resharper_space_within_empty_template_params = false
resharper_space_within_expression_parentheses = false
resharper_space_within_initializer_braces = false
resharper_space_within_invocation_parentheses = false
resharper_space_within_method_parentheses = false
resharper_space_within_nameof_parentheses = false
resharper_space_within_new_parentheses = false
resharper_space_within_parentheses = false
resharper_space_within_single_line_array_initializer_braces = true
resharper_space_within_sizeof_parentheses = false
resharper_space_within_slice_pattern = true
resharper_space_within_template_args = false
resharper_space_within_template_params = false
resharper_space_within_tuple_parentheses = false
resharper_space_within_typeof_parentheses = false
resharper_space_within_type_argument_angles = false
resharper_space_within_type_parameter_angles = false
resharper_space_within_type_parameter_parentheses = false
resharper_special_else_if_treatment = true
resharper_static_members_qualify_members = none
resharper_static_members_qualify_with = declared_type
resharper_stick_comment = true
resharper_support_vs_event_naming_pattern = true
resharper_toplevel_function_declaration_return_type_style = do_not_change
resharper_toplevel_function_definition_return_type_style = do_not_change
resharper_trailing_comma_in_multiline_lists = false
resharper_trailing_comma_in_singleline_lists = false
resharper_use_continuous_indent_inside_initializer_braces = true
resharper_use_continuous_indent_inside_parens = true
resharper_use_continuous_line_indent_in_expression_braces = false
resharper_use_continuous_line_indent_in_method_pars = false
resharper_use_heuristics_for_body_style = true
resharper_use_indents_from_main_language_in_file = true
resharper_use_indent_from_previous_element = true
resharper_use_indent_from_vs = true
resharper_use_roslyn_logic_for_evident_types = false
resharper_vb_align_multiline_argument = true
resharper_vb_align_multiline_expression = true
resharper_vb_align_multiline_parameter = true
resharper_vb_align_multiple_declaration = true
resharper_vb_blank_lines_around_field = 1
resharper_vb_blank_lines_around_invocable = 1
resharper_vb_insert_final_newline = false
resharper_vb_max_line_length = 120
resharper_vb_place_field_attribute_on_same_line = true
resharper_vb_place_method_attribute_on_same_line = false
resharper_vb_place_type_attribute_on_same_line = false
resharper_vb_prefer_qualified_reference = false
resharper_vb_space_after_unary_operator = true
resharper_vb_space_around_multiplicative_op = false
resharper_vb_wrap_arguments_style = wrap_if_long
resharper_vb_wrap_lines = true
resharper_wrap_after_binary_opsign = true
resharper_wrap_after_declaration_lpar = false
resharper_wrap_after_dot = false
resharper_wrap_after_dot_in_method_calls = false
resharper_wrap_after_expression_lbrace = true
resharper_wrap_after_invocation_lpar = false
resharper_wrap_around_elements = true
resharper_wrap_array_initializer_style = chop_if_long
resharper_wrap_base_clause_style = wrap_if_long
resharper_wrap_before_arrow_with_expressions = false
resharper_wrap_before_binary_opsign = false
resharper_wrap_before_binary_pattern_op = true
resharper_wrap_before_colon = false
resharper_wrap_before_comma = false
resharper_wrap_before_comma_in_base_clause = false
resharper_wrap_before_declaration_lpar = false
resharper_wrap_before_declaration_rpar = false
resharper_wrap_before_eq = false
resharper_wrap_before_expression_rbrace = true
resharper_wrap_before_extends_colon = false
resharper_wrap_before_first_type_parameter_constraint = false
resharper_wrap_before_invocation_lpar = false
resharper_wrap_before_invocation_rpar = false
resharper_wrap_before_linq_expression = false
resharper_wrap_before_ternary_opsigns = true
resharper_wrap_before_type_parameter_langle = false
resharper_wrap_braced_init_list_style = wrap_if_long
resharper_wrap_chained_binary_expressions = wrap_if_long
resharper_wrap_chained_binary_patterns = wrap_if_long
resharper_wrap_chained_method_calls = wrap_if_long
resharper_wrap_ctor_initializer_style = wrap_if_long
resharper_wrap_enumeration_style = chop_if_long
resharper_wrap_enum_declaration = chop_always
resharper_wrap_extends_list_style = wrap_if_long
resharper_wrap_for_stmt_header_style = chop_if_long
resharper_wrap_list_pattern = wrap_if_long
resharper_wrap_multiple_declaration_style = chop_if_long
resharper_wrap_multiple_type_parameter_constraints_style = chop_if_long
resharper_wrap_object_and_collection_initializer_style = chop_always
resharper_wrap_parameters_style = wrap_if_long
resharper_wrap_property_pattern = chop_if_long
resharper_wrap_switch_expression = chop_always
resharper_wrap_ternary_expr_style = chop_if_long
resharper_wrap_verbatim_interpolated_strings = no_wrap
resharper_xmldoc_attribute_indent = single_indent
resharper_xmldoc_insert_final_newline = false
resharper_xmldoc_linebreak_before_elements = summary,remarks,example,returns,param,typeparam,value,para
resharper_xmldoc_max_blank_lines_between_tags = 0
resharper_xmldoc_max_line_length = 120
resharper_xmldoc_pi_attribute_style = do_not_touch
resharper_xmldoc_space_before_self_closing = true
resharper_xmldoc_wrap_lines = true
resharper_xmldoc_wrap_tags_and_pi = true
resharper_xmldoc_wrap_text = true
resharper_xml_attribute_indent = align_by_first_attribute
resharper_xml_insert_final_newline = false
resharper_xml_linebreak_before_elements =
resharper_xml_max_blank_lines_between_tags = 2
resharper_xml_max_line_length = 120
resharper_xml_pi_attribute_style = do_not_touch
resharper_xml_space_before_self_closing = true
resharper_xml_wrap_lines = true
resharper_xml_wrap_tags_and_pi = true
resharper_xml_wrap_text = false
# ReSharper inspection severities
resharper_access_rights_in_text_highlighting = warning
resharper_access_to_disposed_closure_highlighting = warning
resharper_access_to_for_each_variable_in_closure_highlighting = warning
resharper_access_to_modified_closure_highlighting = warning
resharper_access_to_static_member_via_derived_type_highlighting = warning
resharper_address_of_marshal_by_ref_object_highlighting = warning
resharper_angular_html_banana_highlighting = warning
resharper_annotate_can_be_null_parameter_highlighting = none
resharper_annotate_can_be_null_type_member_highlighting = none
resharper_annotate_not_null_parameter_highlighting = none
resharper_annotate_not_null_type_member_highlighting = none
resharper_annotation_conflict_in_hierarchy_highlighting = warning
resharper_annotation_redundancy_at_value_type_highlighting = warning
resharper_annotation_redundancy_in_hierarchy_highlighting = warning
resharper_arguments_style_anonymous_function_highlighting = none
resharper_arguments_style_literal_highlighting = none
resharper_arguments_style_named_expression_highlighting = none
resharper_arguments_style_other_highlighting = none
resharper_arguments_style_string_literal_highlighting = none
resharper_arrange_accessor_owner_body_highlighting = suggestion
resharper_arrange_attributes_highlighting = none
resharper_arrange_constructor_or_destructor_body_highlighting = none
resharper_arrange_default_value_when_type_evident_highlighting = suggestion
resharper_arrange_default_value_when_type_not_evident_highlighting = hint
resharper_arrange_local_function_body_highlighting = none
resharper_arrange_method_or_operator_body_highlighting = none
resharper_arrange_namespace_body_highlighting = hint
resharper_arrange_null_checking_pattern_highlighting = hint
resharper_arrange_object_creation_when_type_evident_highlighting = suggestion
resharper_arrange_object_creation_when_type_not_evident_highlighting = hint
resharper_arrange_redundant_parentheses_highlighting = hint
resharper_arrange_static_member_qualifier_highlighting = hint
resharper_arrange_this_qualifier_highlighting = hint
resharper_arrange_trailing_comma_in_multiline_lists_highlighting = hint
resharper_arrange_trailing_comma_in_singleline_lists_highlighting = hint
resharper_arrange_type_member_modifiers_highlighting = hint
resharper_arrange_type_modifiers_highlighting = hint
resharper_arrange_var_keywords_in_deconstructing_declaration_highlighting = suggestion
resharper_asp_content_placeholder_not_resolved_highlighting = error
resharper_asp_custom_page_parser_filter_type_highlighting = warning
resharper_asp_dead_code_highlighting = warning
resharper_asp_entity_highlighting = warning
resharper_asp_image_highlighting = warning
resharper_asp_invalid_control_type_highlighting = error
resharper_asp_not_resolved_highlighting = error
resharper_asp_ods_method_reference_resolve_error_highlighting = error
resharper_asp_resolve_warning_highlighting = warning
resharper_asp_skin_not_resolved_highlighting = error
resharper_asp_tag_attribute_with_optional_value_highlighting = warning
resharper_asp_theme_not_resolved_highlighting = error
resharper_asp_unused_register_directive_highlighting_highlighting = warning
resharper_asp_warning_highlighting = warning
resharper_assignment_in_conditional_expression_highlighting = warning
resharper_assignment_is_fully_discarded_highlighting = warning
resharper_assign_null_to_not_null_attribute_highlighting = warning
resharper_asxx_path_error_highlighting = warning
resharper_async_iterator_invocation_without_await_foreach_highlighting = warning
resharper_async_void_lambda_highlighting = warning
resharper_async_void_method_highlighting = none
resharper_auto_property_can_be_made_get_only_global_highlighting = suggestion
resharper_auto_property_can_be_made_get_only_local_highlighting = suggestion
resharper_bad_attribute_brackets_spaces_highlighting = none
resharper_bad_braces_spaces_highlighting = none
resharper_bad_child_statement_indent_highlighting = warning
resharper_bad_colon_spaces_highlighting = none
resharper_bad_comma_spaces_highlighting = none
resharper_bad_control_braces_indent_highlighting = suggestion
resharper_bad_control_braces_line_breaks_highlighting = none
resharper_bad_declaration_braces_indent_highlighting = none
resharper_bad_declaration_braces_line_breaks_highlighting = none
resharper_bad_empty_braces_line_breaks_highlighting = none
resharper_bad_expression_braces_indent_highlighting = none
resharper_bad_expression_braces_line_breaks_highlighting = none
resharper_bad_generic_brackets_spaces_highlighting = none
resharper_bad_indent_highlighting = none
resharper_bad_linq_line_breaks_highlighting = none
resharper_bad_list_line_breaks_highlighting = none
resharper_bad_member_access_spaces_highlighting = none
resharper_bad_namespace_braces_indent_highlighting = none
resharper_bad_parens_line_breaks_highlighting = none
resharper_bad_parens_spaces_highlighting = none
resharper_bad_preprocessor_indent_highlighting = none
resharper_bad_semicolon_spaces_highlighting = none
resharper_bad_spaces_after_keyword_highlighting = none
resharper_bad_square_brackets_spaces_highlighting = none
resharper_bad_switch_braces_indent_highlighting = none
resharper_bad_symbol_spaces_highlighting = none
resharper_base_member_has_params_highlighting = warning
resharper_base_method_call_with_default_parameter_highlighting = warning
resharper_base_object_equals_is_object_equals_highlighting = warning
resharper_base_object_get_hash_code_call_in_get_hash_code_highlighting = warning
resharper_bitwise_operator_on_enum_without_flags_highlighting = warning
resharper_blazor_editor_required_highlighting = warning
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
resharper_built_in_type_reference_style_highlighting = hint
resharper_by_ref_argument_is_volatile_field_highlighting = warning
resharper_cannot_apply_equality_operator_to_type_highlighting = warning
resharper_can_simplify_dictionary_lookup_with_try_add_highlighting = warning
resharper_can_simplify_dictionary_lookup_with_try_get_value_highlighting = warning
resharper_center_tag_is_obsolete_highlighting = warning
resharper_check_for_reference_equality_instead_1_highlighting = suggestion
resharper_check_for_reference_equality_instead_2_highlighting = suggestion
resharper_check_for_reference_equality_instead_3_highlighting = suggestion
resharper_check_for_reference_equality_instead_4_highlighting = suggestion
resharper_check_namespace_highlighting = warning
resharper_class_cannot_be_instantiated_highlighting = warning
resharper_class_can_be_sealed_global_highlighting = none
resharper_class_can_be_sealed_local_highlighting = none
resharper_class_never_instantiated_global_highlighting = suggestion
resharper_class_never_instantiated_local_highlighting = suggestion
resharper_class_with_virtual_members_never_inherited_global_highlighting = suggestion
resharper_class_with_virtual_members_never_inherited_local_highlighting = suggestion
resharper_clear_attribute_is_obsolete_all_highlighting = warning
resharper_clear_attribute_is_obsolete_highlighting = warning
resharper_collection_never_queried_global_highlighting = warning
resharper_collection_never_queried_local_highlighting = warning
resharper_collection_never_updated_global_highlighting = warning
resharper_collection_never_updated_local_highlighting = warning
resharper_comment_typo_highlighting = suggestion
resharper_compare_non_constrained_generic_with_null_highlighting = none
resharper_compare_of_floats_by_equality_operator_highlighting = warning
resharper_conditional_access_qualifier_is_non_nullable_according_to_api_contract_highlighting = warning
resharper_conditional_ternary_equal_branch_highlighting = warning
resharper_condition_is_always_true_or_false_according_to_nullable_api_contract_highlighting = warning
resharper_condition_is_always_true_or_false_highlighting = warning
resharper_confusing_char_as_integer_in_constructor_highlighting = warning
resharper_constant_conditional_access_qualifier_highlighting = warning
resharper_constant_null_coalescing_condition_highlighting = warning
resharper_constructor_initializer_loop_highlighting = warning
resharper_container_annotation_redundancy_highlighting = warning
resharper_context_value_is_provided_highlighting = none
resharper_contract_annotation_not_parsed_highlighting = warning
resharper_convert_closure_to_method_group_highlighting = suggestion
resharper_convert_conditional_ternary_expression_to_switch_expression_highlighting = hint
resharper_convert_if_do_to_while_highlighting = suggestion
resharper_convert_if_statement_to_conditional_ternary_expression_highlighting = suggestion
resharper_convert_if_statement_to_null_coalescing_assignment_highlighting = suggestion
resharper_convert_if_statement_to_null_coalescing_expression_highlighting = suggestion
resharper_convert_if_statement_to_return_statement_highlighting = hint
resharper_convert_if_statement_to_switch_statement_highlighting = hint
resharper_convert_if_to_or_expression_highlighting = suggestion
resharper_convert_nullable_to_short_form_highlighting = suggestion
resharper_convert_switch_statement_to_switch_expression_highlighting = hint
resharper_convert_to_auto_property_highlighting = suggestion
resharper_convert_to_auto_property_when_possible_highlighting = hint
resharper_convert_to_auto_property_with_private_setter_highlighting = hint
resharper_convert_to_compound_assignment_highlighting = hint
resharper_convert_to_constant_global_highlighting = hint
resharper_convert_to_constant_local_highlighting = hint
resharper_convert_to_lambda_expression_highlighting = suggestion
resharper_convert_to_local_function_highlighting = suggestion
resharper_convert_to_null_coalescing_compound_assignment_highlighting = suggestion
resharper_convert_to_primary_constructor_highlighting = suggestion
resharper_convert_to_static_class_highlighting = suggestion
resharper_convert_to_using_declaration_highlighting = suggestion
resharper_convert_to_vb_auto_property_highlighting = suggestion
resharper_convert_to_vb_auto_property_when_possible_highlighting = hint
resharper_convert_to_vb_auto_property_with_private_setter_highlighting = hint
resharper_convert_type_check_pattern_to_null_check_highlighting = warning
resharper_convert_type_check_to_null_check_highlighting = warning
resharper_co_variant_array_conversion_highlighting = warning
resharper_cpp_abstract_class_without_specifier_highlighting = warning
resharper_cpp_abstract_final_class_highlighting = warning
resharper_cpp_abstract_virtual_function_call_in_ctor_highlighting = error
resharper_cpp_access_specifier_with_no_declarations_highlighting = suggestion
resharper_cpp_assigned_value_is_never_used_highlighting = warning
resharper_cpp_awaiter_type_is_not_class_highlighting = warning
resharper_cpp_bad_angle_brackets_spaces_highlighting = none
resharper_cpp_bad_braces_spaces_highlighting = none
resharper_cpp_bad_child_statement_indent_highlighting = none
resharper_cpp_bad_colon_spaces_highlighting = none
resharper_cpp_bad_comma_spaces_highlighting = none
resharper_cpp_bad_control_braces_indent_highlighting = none
resharper_cpp_bad_control_braces_line_breaks_highlighting = none
resharper_cpp_bad_declaration_braces_indent_highlighting = none
resharper_cpp_bad_declaration_braces_line_breaks_highlighting = none
resharper_cpp_bad_empty_braces_line_breaks_highlighting = none
resharper_cpp_bad_expression_braces_indent_highlighting = none
resharper_cpp_bad_expression_braces_line_breaks_highlighting = none
resharper_cpp_bad_indent_highlighting = none
resharper_cpp_bad_list_line_breaks_highlighting = none
resharper_cpp_bad_member_access_spaces_highlighting = none
resharper_cpp_bad_namespace_braces_indent_highlighting = none
resharper_cpp_bad_parens_line_breaks_highlighting = none
resharper_cpp_bad_parens_spaces_highlighting = none
resharper_cpp_bad_semicolon_spaces_highlighting = none
resharper_cpp_bad_spaces_after_keyword_highlighting = none
resharper_cpp_bad_square_brackets_spaces_highlighting = none
resharper_cpp_bad_switch_braces_indent_highlighting = none
resharper_cpp_bad_symbol_spaces_highlighting = none
resharper_cpp_boolean_increment_expression_highlighting = warning
resharper_cpp_boost_format_bad_code_highlighting = warning
resharper_cpp_boost_format_legacy_code_highlighting = suggestion
resharper_cpp_boost_format_mixed_args_highlighting = error
resharper_cpp_boost_format_too_few_args_highlighting = error
resharper_cpp_boost_format_too_many_args_highlighting = warning
resharper_cpp_clang_tidy_abseil_cleanup_ctad_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_addition_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_comparison_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_conversion_cast_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_division_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_factory_float_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_factory_scale_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_subtraction_highlighting = none
resharper_cpp_clang_tidy_abseil_duration_unnecessary_conversion_highlighting = none
resharper_cpp_clang_tidy_abseil_faster_strsplit_delimiter_highlighting = none
resharper_cpp_clang_tidy_abseil_no_internal_dependencies_highlighting = none
resharper_cpp_clang_tidy_abseil_no_namespace_highlighting = none
resharper_cpp_clang_tidy_abseil_redundant_strcat_calls_highlighting = none
resharper_cpp_clang_tidy_abseil_string_find_startswith_highlighting = none
resharper_cpp_clang_tidy_abseil_string_find_str_contains_highlighting = none
resharper_cpp_clang_tidy_abseil_str_cat_append_highlighting = none
resharper_cpp_clang_tidy_abseil_time_comparison_highlighting = none
resharper_cpp_clang_tidy_abseil_time_subtraction_highlighting = none
resharper_cpp_clang_tidy_abseil_upgrade_duration_conversions_highlighting = none
resharper_cpp_clang_tidy_altera_id_dependent_backward_branch_highlighting = none
resharper_cpp_clang_tidy_altera_kernel_name_restriction_highlighting = none
resharper_cpp_clang_tidy_altera_single_work_item_barrier_highlighting = none
resharper_cpp_clang_tidy_altera_struct_pack_align_highlighting = none
resharper_cpp_clang_tidy_altera_unroll_loops_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_accept4_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_accept_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_creat_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_dup_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_epoll_create1_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_epoll_create_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_fopen_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_inotify_init1_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_inotify_init_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_memfd_create_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_open_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_pipe2_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_pipe_highlighting = none
resharper_cpp_clang_tidy_android_cloexec_socket_highlighting = none
resharper_cpp_clang_tidy_android_comparison_in_temp_failure_retry_highlighting = none
resharper_cpp_clang_tidy_boost_use_to_string_highlighting = suggestion
resharper_cpp_clang_tidy_bugprone_argument_comment_highlighting = suggestion
resharper_cpp_clang_tidy_bugprone_assert_side_effect_highlighting = warning
resharper_cpp_clang_tidy_bugprone_assignment_in_if_condition_highlighting = none
resharper_cpp_clang_tidy_bugprone_bad_signal_to_kill_thread_highlighting = warning
resharper_cpp_clang_tidy_bugprone_bool_pointer_implicit_conversion_highlighting = none
resharper_cpp_clang_tidy_bugprone_branch_clone_highlighting = warning
resharper_cpp_clang_tidy_bugprone_copy_constructor_init_highlighting = warning
resharper_cpp_clang_tidy_bugprone_dangling_handle_highlighting = warning
resharper_cpp_clang_tidy_bugprone_dynamic_static_initializers_highlighting = warning
resharper_cpp_clang_tidy_bugprone_easily_swappable_parameters_highlighting = none
resharper_cpp_clang_tidy_bugprone_exception_escape_highlighting = none
resharper_cpp_clang_tidy_bugprone_fold_init_type_highlighting = warning
resharper_cpp_clang_tidy_bugprone_forwarding_reference_overload_highlighting = warning
resharper_cpp_clang_tidy_bugprone_forward_declaration_namespace_highlighting = warning
resharper_cpp_clang_tidy_bugprone_implicit_widening_of_multiplication_result_highlighting = warning
resharper_cpp_clang_tidy_bugprone_inaccurate_erase_highlighting = warning
resharper_cpp_clang_tidy_bugprone_incorrect_roundings_highlighting = warning
resharper_cpp_clang_tidy_bugprone_infinite_loop_highlighting = warning
resharper_cpp_clang_tidy_bugprone_integer_division_highlighting = warning
resharper_cpp_clang_tidy_bugprone_lambda_function_name_highlighting = warning
resharper_cpp_clang_tidy_bugprone_macro_parentheses_highlighting = warning
resharper_cpp_clang_tidy_bugprone_macro_repeated_side_effects_highlighting = warning
resharper_cpp_clang_tidy_bugprone_misplaced_operator_in_strlen_in_alloc_highlighting = warning
resharper_cpp_clang_tidy_bugprone_misplaced_pointer_arithmetic_in_alloc_highlighting = warning
resharper_cpp_clang_tidy_bugprone_misplaced_widening_cast_highlighting = warning
resharper_cpp_clang_tidy_bugprone_move_forwarding_reference_highlighting = warning
resharper_cpp_clang_tidy_bugprone_multiple_statement_macro_highlighting = warning
resharper_cpp_clang_tidy_bugprone_narrowing_conversions_highlighting = warning
resharper_cpp_clang_tidy_bugprone_not_null_terminated_result_highlighting = warning
resharper_cpp_clang_tidy_bugprone_no_escape_highlighting = warning
resharper_cpp_clang_tidy_bugprone_parent_virtual_call_highlighting = warning
resharper_cpp_clang_tidy_bugprone_posix_return_highlighting = warning
resharper_cpp_clang_tidy_bugprone_redundant_branch_condition_highlighting = warning
resharper_cpp_clang_tidy_bugprone_reserved_identifier_highlighting = warning
resharper_cpp_clang_tidy_bugprone_shared_ptr_array_mismatch_highlighting = warning
resharper_cpp_clang_tidy_bugprone_signal_handler_highlighting = warning
resharper_cpp_clang_tidy_bugprone_signed_char_misuse_highlighting = warning
resharper_cpp_clang_tidy_bugprone_sizeof_container_highlighting = warning
resharper_cpp_clang_tidy_bugprone_sizeof_expression_highlighting = warning
resharper_cpp_clang_tidy_bugprone_spuriously_wake_up_functions_highlighting = warning
resharper_cpp_clang_tidy_bugprone_stringview_nullptr_highlighting = warning
resharper_cpp_clang_tidy_bugprone_string_constructor_highlighting = warning
resharper_cpp_clang_tidy_bugprone_string_integer_assignment_highlighting = warning
resharper_cpp_clang_tidy_bugprone_string_literal_with_embedded_nul_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_enum_usage_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_include_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_memory_comparison_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_memset_usage_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_missing_comma_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_semicolon_highlighting = warning
resharper_cpp_clang_tidy_bugprone_suspicious_string_compare_highlighting = warning
resharper_cpp_clang_tidy_bugprone_swapped_arguments_highlighting = warning
resharper_cpp_clang_tidy_bugprone_terminating_continue_highlighting = warning
resharper_cpp_clang_tidy_bugprone_throw_keyword_missing_highlighting = warning
resharper_cpp_clang_tidy_bugprone_too_small_loop_variable_highlighting = warning
resharper_cpp_clang_tidy_bugprone_unchecked_optional_access_highlighting = warning
resharper_cpp_clang_tidy_bugprone_undefined_memory_manipulation_highlighting = warning
resharper_cpp_clang_tidy_bugprone_undelegated_constructor_highlighting = warning
resharper_cpp_clang_tidy_bugprone_unhandled_exception_at_new_highlighting = none
resharper_cpp_clang_tidy_bugprone_unhandled_self_assignment_highlighting = warning
resharper_cpp_clang_tidy_bugprone_unused_raii_highlighting = warning
resharper_cpp_clang_tidy_bugprone_unused_return_value_highlighting = warning
resharper_cpp_clang_tidy_bugprone_use_after_move_highlighting = warning
resharper_cpp_clang_tidy_bugprone_virtual_near_miss_highlighting = suggestion
resharper_cpp_clang_tidy_cert_con36_c_highlighting = none
resharper_cpp_clang_tidy_cert_con54_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_dcl03_c_highlighting = none
resharper_cpp_clang_tidy_cert_dcl16_c_highlighting = none
resharper_cpp_clang_tidy_cert_dcl21_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_dcl37_c_highlighting = none
resharper_cpp_clang_tidy_cert_dcl50_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_dcl51_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_dcl54_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_dcl58_cpp_highlighting = warning
resharper_cpp_clang_tidy_cert_dcl59_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_env33_c_highlighting = none
resharper_cpp_clang_tidy_cert_err09_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_err33_c_highlighting = warning
resharper_cpp_clang_tidy_cert_err34_c_highlighting = suggestion
resharper_cpp_clang_tidy_cert_err52_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_err58_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_err60_cpp_highlighting = warning
resharper_cpp_clang_tidy_cert_err61_cpp_highlighting = none
resharper_cpp_clang_tidy_cert_exp42_c_highlighting = none
resharper_cpp_clang_tidy_cert_fio38_c_highlighting = none
resharper_cpp_clang_tidy_cert_flp30_c_highlighting = warning