forked from IdentityServer/IdentityServer4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
1941 lines (1907 loc) · 104 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
# 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 ####
# this. and Me. preferences
dotnet_style_qualification_for_event=false:warning
dotnet_style_qualification_for_field=false:warning
dotnet_style_qualification_for_method=false:warning
dotnet_style_qualification_for_property=false:warning
# Language keywords vs BCL types preferences
dotnet_style_predefined_type_for_locals_parameters_members=true:silent
dotnet_style_predefined_type_for_member_access=true:silent
# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators=always_for_clarity:silent
dotnet_style_parentheses_in_other_binary_operators=always_for_clarity:silent
dotnet_style_parentheses_in_other_operators=never_if_unnecessary:silent
dotnet_style_parentheses_in_relational_binary_operators=always_for_clarity:silent
# Modifier preferences
dotnet_style_require_accessibility_modifiers=for_non_interface_members:silent
# Expression-level preferences
csharp_style_deconstructed_variable_declaration=true:suggestion
csharp_style_inlined_variable_declaration=true:suggestion
csharp_style_throw_expression=true:suggestion
dotnet_style_coalesce_expression=true:suggestion
dotnet_style_collection_initializer=true:suggestion
dotnet_style_explicit_tuple_names=true:suggestion
dotnet_style_null_propagation=true:suggestion
dotnet_style_object_initializer=true:suggestion
dotnet_style_prefer_auto_properties=true:silent
dotnet_style_prefer_compound_assignment=true:suggestion
dotnet_style_prefer_conditional_expression_over_assignment=true:silent
dotnet_style_prefer_conditional_expression_over_return=true:silent
dotnet_style_prefer_inferred_anonymous_type_member_names=true:suggestion
dotnet_style_prefer_inferred_tuple_names=true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method=true:suggestion
# Field preferences
dotnet_style_readonly_field=true:suggestion
# Parameter preferences
dotnet_code_quality_unused_parameters=all:suggestion
#### C# Coding Conventions ####
# var preferences
csharp_style_var_elsewhere=false:silent
csharp_style_var_for_built_in_types=false:silent
csharp_style_var_when_type_is_apparent=false:silent
# Expression-bodied members
csharp_style_expression_bodied_accessors=true:silent
csharp_style_expression_bodied_constructors=false:silent
csharp_style_expression_bodied_indexers=true:silent
csharp_style_expression_bodied_lambdas=true:silent
csharp_style_expression_bodied_local_functions=false:silent
csharp_style_expression_bodied_methods=false:silent
csharp_style_expression_bodied_operators=false:silent
csharp_style_expression_bodied_properties=true:silent
# Pattern matching preferences
csharp_style_pattern_matching_over_as_with_null_check=true:suggestion
csharp_style_pattern_matching_over_is_with_cast_check=true:suggestion
# Null-checking preferences
csharp_style_conditional_delegate_call=true:suggestion
# Modifier preferences
csharp_preferred_modifier_order=public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async
# Code-block preferences
csharp_prefer_braces=true:silent
# Expression-level preferences
csharp_prefer_simple_default_expression=true:suggestion
csharp_style_pattern_local_over_anonymous_function=true:suggestion
csharp_style_prefer_index_operator=true:suggestion
csharp_style_prefer_range_operator=true:suggestion
csharp_style_unused_value_assignment_preference=discard_variable:suggestion
csharp_style_unused_value_expression_statement_preference=discard_variable:silent
#### 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
[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace=false
insert_final_newline=false
indent_style=space
indent_size=4
# Microsoft .NET properties
csharp_indent_braces=false
csharp_indent_switch_labels=true
csharp_new_line_before_catch=true
csharp_new_line_before_else=true
csharp_new_line_before_finally=true
csharp_new_line_before_members_in_object_initializers=false
csharp_new_line_before_open_brace=all
csharp_new_line_between_query_expression_clauses=true
csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_preserve_single_line_blocks=true
csharp_space_after_cast=true
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
csharp_style_var_elsewhere=true:suggestion
csharp_style_var_for_built_in_types=true:suggestion
csharp_style_var_when_type_is_apparent=true:suggestion
csharp_using_directive_placement=outside_namespace:silent
dotnet_naming_rule.constants_rule.severity=warning
dotnet_naming_rule.constants_rule.style=upper_camel_case_style
dotnet_naming_rule.constants_rule.symbols=constants_symbols
dotnet_naming_rule.event_rule.severity=warning
dotnet_naming_rule.event_rule.style=upper_camel_case_style
dotnet_naming_rule.event_rule.symbols=event_symbols
dotnet_naming_rule.interfaces_rule.severity=warning
dotnet_naming_rule.interfaces_rule.style=i_upper_camel_case_style
dotnet_naming_rule.interfaces_rule.symbols=interfaces_symbols
dotnet_naming_rule.locals_rule.severity=warning
dotnet_naming_rule.locals_rule.style=lower_camel_case_style_1
dotnet_naming_rule.locals_rule.symbols=locals_symbols
dotnet_naming_rule.local_constants_rule.severity=warning
dotnet_naming_rule.local_constants_rule.style=lower_camel_case_style_1
dotnet_naming_rule.local_constants_rule.symbols=local_constants_symbols
dotnet_naming_rule.local_functions_rule.severity=warning
dotnet_naming_rule.local_functions_rule.style=upper_camel_case_style
dotnet_naming_rule.local_functions_rule.symbols=local_functions_symbols
dotnet_naming_rule.method_rule.severity=warning
dotnet_naming_rule.method_rule.style=upper_camel_case_style
dotnet_naming_rule.method_rule.symbols=method_symbols
dotnet_naming_rule.parameters_rule.severity=warning
dotnet_naming_rule.parameters_rule.style=lower_camel_case_style_1
dotnet_naming_rule.parameters_rule.symbols=parameters_symbols
dotnet_naming_rule.private_constants_rule.severity=warning
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_instance_fields_rule.severity=warning
dotnet_naming_rule.private_instance_fields_rule.style=lower_camel_case_style
dotnet_naming_rule.private_instance_fields_rule.symbols=private_instance_fields_symbols
dotnet_naming_rule.private_static_fields_rule.severity=warning
dotnet_naming_rule.private_static_fields_rule.style=lower_camel_case_style
dotnet_naming_rule.private_static_fields_rule.symbols=private_static_fields_symbols
dotnet_naming_rule.private_static_readonly_rule.severity=warning
dotnet_naming_rule.private_static_readonly_rule.style=upper_camel_case_style
dotnet_naming_rule.private_static_readonly_rule.symbols=private_static_readonly_symbols
dotnet_naming_rule.property_rule.severity=warning
dotnet_naming_rule.property_rule.style=upper_camel_case_style
dotnet_naming_rule.property_rule.symbols=property_symbols
dotnet_naming_rule.public_fields_rule.severity=warning
dotnet_naming_rule.public_fields_rule.style=upper_camel_case_style
dotnet_naming_rule.public_fields_rule.symbols=public_fields_symbols
dotnet_naming_rule.static_readonly_rule.severity=warning
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.severity=warning
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.type_parameters_rule.severity=warning
dotnet_naming_rule.type_parameters_rule.style=t_upper_camel_case_style
dotnet_naming_rule.type_parameters_rule.symbols=type_parameters_symbols
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.required_prefix=_
dotnet_naming_style.lower_camel_case_style_1.capitalization=camel_case
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.event_symbols.applicable_accessibilities=*
dotnet_naming_symbols.event_symbols.applicable_kinds=event
dotnet_naming_symbols.interfaces_symbols.applicable_accessibilities=*
dotnet_naming_symbols.interfaces_symbols.applicable_kinds=interface
dotnet_naming_symbols.locals_symbols.applicable_accessibilities=*
dotnet_naming_symbols.locals_symbols.applicable_kinds=local
dotnet_naming_symbols.local_constants_symbols.applicable_accessibilities=*
dotnet_naming_symbols.local_constants_symbols.applicable_kinds=local
dotnet_naming_symbols.local_constants_symbols.required_modifiers=const
dotnet_naming_symbols.local_functions_symbols.applicable_accessibilities=*
dotnet_naming_symbols.local_functions_symbols.applicable_kinds=local_function
dotnet_naming_symbols.method_symbols.applicable_accessibilities=*
dotnet_naming_symbols.method_symbols.applicable_kinds=method
dotnet_naming_symbols.parameters_symbols.applicable_accessibilities=*
dotnet_naming_symbols.parameters_symbols.applicable_kinds=parameter
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_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_symbols.applicable_accessibilities=private
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds=field
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers=static,readonly
dotnet_naming_symbols.property_symbols.applicable_accessibilities=*
dotnet_naming_symbols.property_symbols.applicable_kinds=property
dotnet_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.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_symbols.applicable_accessibilities=*
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_kinds=namespace,class,struct,enum,delegate
dotnet_naming_symbols.type_parameters_symbols.applicable_accessibilities=*
dotnet_naming_symbols.type_parameters_symbols.applicable_kinds=type_parameter
dotnet_style_parentheses_in_arithmetic_binary_operators=never_if_unnecessary:none
dotnet_style_parentheses_in_other_binary_operators=never_if_unnecessary:none
dotnet_style_parentheses_in_relational_binary_operators=never_if_unnecessary:none
dotnet_style_predefined_type_for_locals_parameters_members=true:suggestion
dotnet_style_predefined_type_for_member_access=true:suggestion
dotnet_style_qualification_for_event=false:suggestion
dotnet_style_qualification_for_field=false:suggestion
dotnet_style_qualification_for_method=false:suggestion
dotnet_style_qualification_for_property=false:suggestion
dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion
# ReSharper properties
resharper_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_expressions_chain=true
resharper_align_multiline_calls_chain=false
resharper_align_multiline_extends_list=false
resharper_align_multiline_for_stmt=false
resharper_align_multiline_implements_list=true
resharper_align_multiline_switch_expression=false
resharper_align_multline_type_parameter_constrains=false
resharper_align_multline_type_parameter_list=false
resharper_align_tuple_components=false
resharper_allow_alias=true
resharper_allow_comment_after_lbrace=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=true
resharper_blank_lines_after_block_statements=1
resharper_blank_lines_after_case=0
resharper_blank_lines_after_control_transfer_statements=0
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_auto_property=1
resharper_blank_lines_around_block_case_section=0
resharper_blank_lines_around_field=1
resharper_blank_lines_around_global_attribute=0
resharper_blank_lines_around_invocable=1
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_property=1
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_auto_property=0
resharper_blank_lines_around_single_line_field=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_type=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_between_using_groups=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_fixed=required
resharper_braces_for_for=not_required
resharper_braces_for_foreach=not_required
resharper_braces_for_ifelse=not_required_for_both
resharper_braces_for_lock=required
resharper_braces_for_using=required
resharper_braces_for_while=not_required
resharper_braces_redundant=true
resharper_can_use_global_alias=true
resharper_constructor_or_destructor_body=block_body
resharper_continuous_indent_multiplier=1
resharper_csharp_align_multiline_argument=false
resharper_csharp_align_multiline_expression=false
resharper_csharp_align_multiline_parameter=false
resharper_csharp_align_multiple_declaration=false
resharper_csharp_max_line_length=120
resharper_csharp_naming_rule.enum_member=AaBb
resharper_csharp_naming_rule.method_property_event=AaBb
resharper_csharp_naming_rule.other=AaBb
resharper_csharp_prefer_qualified_reference=false
resharper_csharp_wrap_lines=true
resharper_default_exception_variable_name=e
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_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_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_format_leading_spaces_decl=false
resharper_html_attribute_indent=align_by_first_attribute
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_anonymous_method_block=false
resharper_indent_case_from_select=true
resharper_indent_child_elements=OneIndent
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_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_instance_members_qualify_declared_in=this_class, base_class
resharper_int_align=false
resharper_keep_blank_lines_in_code=2
resharper_keep_blank_lines_in_declarations=2
resharper_keep_existing_attribute_arrangement=false
resharper_keep_existing_declaration_block_arrangement=false
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_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_local_function_body=block_body
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_method_or_operator_body=block_body
resharper_nested_ternary_style=autodetect
resharper_new_line_before_while=false
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_old_engine=false
resharper_outdent_binary_ops=false
resharper_outdent_commas=false
resharper_outdent_dots=false
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_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=if_owner_is_single_line
resharper_place_expr_method_on_single_line=if_owner_is_single_line
resharper_place_expr_property_on_single_line=if_owner_is_single_line
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_property_attribute_on_same_line=false
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_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_blank_lines_near_braces_in_code=true
resharper_remove_blank_lines_near_braces_in_declarations=true
resharper_remove_this_qualifier=true
resharper_resx_attribute_indent=single_indent
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_sort_attributes=false
resharper_sort_class_selectors=false
resharper_sort_usings=true
resharper_sort_usings_lowercase_first=false
resharper_sort_usings_with_system_first=true
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_colon=true
resharper_space_after_colon_in_case=true
resharper_space_after_comma=true
resharper_space_after_last_attribute=false
resharper_space_after_last_pi_attribute=false
resharper_space_after_operator_keyword=true
resharper_space_after_triple_slash=true
resharper_space_after_type_parameter_constraint_colon=true
resharper_space_after_unary_operator=false
resharper_space_around_additive_op=true
resharper_space_around_alias_eq=true
resharper_space_around_assignment_op=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_comma=false
resharper_space_before_default_parentheses=false
resharper_space_before_empty_invocation_parentheses=false
resharper_space_before_empty_method_parentheses=false
resharper_space_before_invocation_parentheses=false
resharper_space_before_label_colon=false
resharper_space_before_method_parentheses=false
resharper_space_before_nameof_parentheses=false
resharper_space_before_nullable_mark=false
resharper_space_before_pointer_asterik_declaration=false
resharper_space_before_semicolon=false
resharper_space_before_singleline_accessorholder=true
resharper_space_before_sizeof_parentheses=false
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_keyword_and_expression=true
resharper_space_between_keyword_and_type=true
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_default_parentheses=false
resharper_space_within_empty_braces=true
resharper_space_within_empty_invocation_parentheses=false
resharper_space_within_empty_method_parentheses=false
resharper_space_within_expression_parentheses=false
resharper_space_within_invocation_parentheses=false
resharper_space_within_method_parentheses=false
resharper_space_within_nameof_parentheses=false
resharper_space_within_single_line_array_initializer_braces=true
resharper_space_within_sizeof_parentheses=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=do_not_change, declared_type
resharper_stick_comment=true
resharper_support_vs_event_naming_pattern=true
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_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=false
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_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_around_multiplicative_op=false
resharper_vb_wrap_lines=true
resharper_wrap_after_declaration_lpar=false
resharper_wrap_after_dot_in_method_calls=false
resharper_wrap_after_invocation_lpar=false
resharper_wrap_arguments_style=wrap_if_long
resharper_wrap_around_elements=true
resharper_wrap_array_initializer_style=wrap_if_long
resharper_wrap_before_arrow_with_expressions=false
resharper_wrap_before_binary_opsign=false
resharper_wrap_before_comma=false
resharper_wrap_before_declaration_lpar=false
resharper_wrap_before_declaration_rpar=false
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_chained_binary_expressions=wrap_if_long
resharper_wrap_chained_method_calls=wrap_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_multiple_declaration_style=chop_if_long
resharper_wrap_multiple_type_parameter_constraints_style=chop_if_long
resharper_wrap_object_and_collection_initializer_style=chop_if_long
resharper_wrap_parameters_style=wrap_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_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_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_abstract_class_constructor_can_be_made_protected_highlighting=hint
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_amd_dependency_path_problem_highlighting=none
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=hint
resharper_arguments_style_literal_highlighting=hint
resharper_arguments_style_named_expression_highlighting=hint
resharper_arguments_style_other_highlighting=hint
resharper_arguments_style_string_literal_highlighting=hint
resharper_arrange_accessor_owner_body_highlighting=suggestion
resharper_arrange_attributes_highlighting=none
resharper_arrange_constructor_or_destructor_body_highlighting=none
resharper_arrange_local_function_body_highlighting=none
resharper_arrange_method_or_operator_body_highlighting=none
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_asp0000_highlighting=warning
resharper_asp0001_highlighting=warning
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_assigned_value_is_never_used_highlighting=warning
resharper_assigned_value_wont_be_assigned_to_corresponding_field_highlighting=warning
resharper_assignment_in_conditional_expression_highlighting=warning
resharper_assignment_in_condition_expression_highlighting=warning
resharper_assignment_is_fully_discarded_highlighting=warning
resharper_assign_null_to_not_null_attribute_highlighting=warning
resharper_assign_to_constant_highlighting=error
resharper_assign_to_implicit_global_in_function_scope_highlighting=warning
resharper_asxx_path_error_highlighting=warning
resharper_async_iterator_invocation_without_await_foreach_highlighting=warning
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_bl0001_highlighting=error
resharper_bl0002_highlighting=warning
resharper_bl0003_highlighting=warning
resharper_bl0004_highlighting=error
resharper_bl0005_highlighting=warning
resharper_bl0006_highlighting=warning
resharper_block_scope_redeclaration_highlighting=error
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_caller_callee_using_error_highlighting=error
resharper_caller_callee_using_highlighting=warning
resharper_cannot_apply_equality_operator_to_type_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_closure_on_modified_variable_highlighting=warning
resharper_coerced_equals_using_highlighting=warning
resharper_coerced_equals_using_with_null_undefined_highlighting=none
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_comma_not_valid_here_highlighting=error
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_ternary_equal_branch_highlighting=warning
resharper_condition_is_always_const_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_call_not_used_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_expression_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_lambda_expression_when_possible_highlighting=none
resharper_convert_to_local_function_highlighting=suggestion
resharper_convert_to_null_coalescing_compound_assignment_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_co_variant_array_conversion_highlighting=warning
resharper_create_specialized_overload_highlighting=hint
resharper_css_browser_compatibility_highlighting=warning
resharper_css_caniuse_feature_requires_prefix_highlighting=hint
resharper_css_caniuse_unsupported_feature_highlighting=hint
resharper_css_not_resolved_highlighting=error
resharper_css_obsolete_highlighting=hint
resharper_css_property_does_not_override_vendor_property_highlighting=warning
resharper_cyclic_reference_comment_highlighting=none
resharper_c_sharp_warnings_cs0078_highlighting=warning
resharper_c_sharp_warnings_cs0108_cs0114_highlighting=warning
resharper_c_sharp_warnings_cs0109_highlighting=warning
resharper_c_sharp_warnings_cs0162_highlighting=warning
resharper_c_sharp_warnings_cs0183_highlighting=warning
resharper_c_sharp_warnings_cs0184_highlighting=warning
resharper_c_sharp_warnings_cs0197_highlighting=warning
resharper_c_sharp_warnings_cs0252_cs0253_highlighting=warning
resharper_c_sharp_warnings_cs0420_highlighting=warning
resharper_c_sharp_warnings_cs0465_highlighting=warning
resharper_c_sharp_warnings_cs0469_highlighting=warning
resharper_c_sharp_warnings_cs0612_highlighting=warning
resharper_c_sharp_warnings_cs0618_highlighting=warning
resharper_c_sharp_warnings_cs0628_highlighting=warning
resharper_c_sharp_warnings_cs0642_highlighting=warning
resharper_c_sharp_warnings_cs0657_highlighting=warning
resharper_c_sharp_warnings_cs0658_highlighting=warning
resharper_c_sharp_warnings_cs0659_highlighting=warning
resharper_c_sharp_warnings_cs0660_cs0661_highlighting=warning
resharper_c_sharp_warnings_cs0665_highlighting=warning
resharper_c_sharp_warnings_cs0672_highlighting=warning
resharper_c_sharp_warnings_cs0693_highlighting=warning
resharper_c_sharp_warnings_cs1030_highlighting=warning
resharper_c_sharp_warnings_cs1058_highlighting=warning
resharper_c_sharp_warnings_cs1066_highlighting=warning
resharper_c_sharp_warnings_cs1522_highlighting=warning
resharper_c_sharp_warnings_cs1570_highlighting=warning
resharper_c_sharp_warnings_cs1571_highlighting=warning
resharper_c_sharp_warnings_cs1572_highlighting=warning
resharper_c_sharp_warnings_cs1573_highlighting=warning
resharper_c_sharp_warnings_cs1574_cs1584_cs1581_cs1580_highlighting=warning
resharper_c_sharp_warnings_cs1574_highlighting=warning
resharper_c_sharp_warnings_cs1580_highlighting=warning
resharper_c_sharp_warnings_cs1584_highlighting=warning
resharper_c_sharp_warnings_cs1587_highlighting=warning
resharper_c_sharp_warnings_cs1589_highlighting=warning
resharper_c_sharp_warnings_cs1590_highlighting=warning
resharper_c_sharp_warnings_cs1591_highlighting=warning
resharper_c_sharp_warnings_cs1592_highlighting=warning
resharper_c_sharp_warnings_cs1710_highlighting=warning
resharper_c_sharp_warnings_cs1711_highlighting=warning
resharper_c_sharp_warnings_cs1712_highlighting=warning
resharper_c_sharp_warnings_cs1717_highlighting=warning
resharper_c_sharp_warnings_cs1723_highlighting=warning
resharper_c_sharp_warnings_cs1911_highlighting=warning
resharper_c_sharp_warnings_cs1957_highlighting=warning
resharper_c_sharp_warnings_cs1981_highlighting=warning
resharper_c_sharp_warnings_cs1998_highlighting=warning
resharper_c_sharp_warnings_cs4014_highlighting=warning
resharper_c_sharp_warnings_cs7095_highlighting=warning
resharper_c_sharp_warnings_cs8094_highlighting=warning
resharper_c_sharp_warnings_cs8123_highlighting=warning
resharper_c_sharp_warnings_cs8383_highlighting=warning
resharper_c_sharp_warnings_cs8416_highlighting=warning
resharper_c_sharp_warnings_cs8417_highlighting=warning
resharper_c_sharp_warnings_cs8425_highlighting=warning
resharper_c_sharp_warnings_cs8509_highlighting=warning
resharper_c_sharp_warnings_cs8597_highlighting=warning
resharper_c_sharp_warnings_cs8600_highlighting=warning
resharper_c_sharp_warnings_cs8601_highlighting=warning
resharper_c_sharp_warnings_cs8602_highlighting=warning
resharper_c_sharp_warnings_cs8603_highlighting=warning
resharper_c_sharp_warnings_cs8604_highlighting=warning
resharper_c_sharp_warnings_cs8605_highlighting=warning
resharper_c_sharp_warnings_cs8606_highlighting=warning
resharper_c_sharp_warnings_cs8608_highlighting=warning
resharper_c_sharp_warnings_cs8609_highlighting=warning
resharper_c_sharp_warnings_cs8610_highlighting=warning
resharper_c_sharp_warnings_cs8611_highlighting=warning
resharper_c_sharp_warnings_cs8612_highlighting=warning
resharper_c_sharp_warnings_cs8613_highlighting=warning
resharper_c_sharp_warnings_cs8614_highlighting=warning
resharper_c_sharp_warnings_cs8615_highlighting=warning
resharper_c_sharp_warnings_cs8616_highlighting=warning
resharper_c_sharp_warnings_cs8617_highlighting=warning
resharper_c_sharp_warnings_cs8618_highlighting=warning
resharper_c_sharp_warnings_cs8619_highlighting=warning
resharper_c_sharp_warnings_cs8620_highlighting=warning
resharper_c_sharp_warnings_cs8621_highlighting=warning
resharper_c_sharp_warnings_cs8622_highlighting=warning
resharper_c_sharp_warnings_cs8624_highlighting=warning
resharper_c_sharp_warnings_cs8625_highlighting=warning
resharper_c_sharp_warnings_cs8629_highlighting=warning
resharper_c_sharp_warnings_cs8631_highlighting=warning
resharper_c_sharp_warnings_cs8632_highlighting=warning
resharper_c_sharp_warnings_cs8633_highlighting=warning
resharper_c_sharp_warnings_cs8634_highlighting=warning
resharper_c_sharp_warnings_cs8643_highlighting=warning
resharper_c_sharp_warnings_cs8644_highlighting=warning
resharper_c_sharp_warnings_cs8645_highlighting=warning
resharper_c_sharp_warnings_cs8656_highlighting=warning
resharper_c_sharp_warnings_cs8667_highlighting=warning
resharper_c_sharp_warnings_cs8714_highlighting=warning
resharper_c_sharp_warnings_wme006_highlighting=warning
resharper_declaration_hides_highlighting=hint
resharper_declaration_is_empty_highlighting=warning
resharper_declaration_visibility_error_highlighting=error
resharper_default_value_attribute_for_optional_parameter_highlighting=warning
resharper_delegate_subtraction_highlighting=warning
resharper_deleting_non_qualified_reference_highlighting=error
resharper_dl_tag_contains_non_dt_or_dd_elements_highlighting=hint
resharper_double_colons_expected_highlighting=error
resharper_double_colons_preferred_highlighting=suggestion
resharper_double_negation_of_boolean_highlighting=warning
resharper_double_negation_operator_highlighting=suggestion
resharper_duplicate_identifier_error_highlighting=error
resharper_duplicate_reference_comment_highlighting=warning
resharper_duplicate_resource_highlighting=warning
resharper_duplicating_local_declaration_highlighting=warning
resharper_duplicating_parameter_declaration_error_highlighting=error
resharper_duplicating_property_declaration_error_highlighting=error
resharper_duplicating_property_declaration_highlighting=warning
resharper_duplicating_switch_label_highlighting=warning
resharper_dynamic_shift_right_op_is_not_int_highlighting=warning
resharper_ef1001_highlighting=warning
resharper_elided_trailing_element_highlighting=warning
resharper_empty_constructor_highlighting=warning
resharper_empty_destructor_highlighting=warning
resharper_empty_embedded_statement_highlighting=warning
resharper_empty_for_statement_highlighting=warning
resharper_empty_general_catch_clause_highlighting=warning
resharper_empty_namespace_highlighting=warning
resharper_empty_object_property_declaration_highlighting=error
resharper_empty_return_value_for_type_annotated_function_highlighting=warning
resharper_empty_statement_highlighting=warning
resharper_empty_title_tag_highlighting=hint
resharper_enc0001_highlighting=info
resharper_enc0002_highlighting=info
resharper_enc0003_highlighting=info
resharper_enc0004_highlighting=info
resharper_enc0005_highlighting=info
resharper_enc0006_highlighting=info
resharper_enc0007_highlighting=info
resharper_enc0008_highlighting=info
resharper_enc0009_highlighting=info
resharper_enc0010_highlighting=info
resharper_enc0011_highlighting=info
resharper_enc0012_highlighting=info
resharper_enc0013_highlighting=info
resharper_enc0014_highlighting=info
resharper_enc0015_highlighting=info
resharper_enc0016_highlighting=info
resharper_enc0017_highlighting=info
resharper_enc0018_highlighting=info
resharper_enc0019_highlighting=info