-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
5660 lines (4798 loc) · 262 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
[*.{cs, cshtml}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.{js, ts, vue}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.{json, xml, yml, yaml}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[{*.graphqlconfig,*.graphqlrc,*.har,*.jsb2,*.jsb3,*.json,*.jsonc,*.postman_collection,*.postman_collection.json,*.postman_environment,*.postman_environment.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,jest.config}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[{*.yaml,*.yml}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[{*.bash,*.sh,*.zsh}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[*.{appxmanifest,asax,ascx,aspx,axaml,build,c,c++,c++m,cc,ccm,cginc,compute,cp,cpp,cppm,cs,cshtml,cu,cuh,cxx,cxxm,dtd,fs,fsi,fsscript,fsx,fx,fxh,h,hh,hlsl,hlsli,hlslinc,hpp,hxx,inc,inl,ino,ipp,ixx,master,ml,mli,mpp,mq4,mq5,mqh,mxx,nuspec,paml,razor,resw,resx,skin,tpp,usf,ush,vb,xaml,xamlx,xoml,xsd}]
indent_style = space
indent_size = 4
tab_width = 4
trim_trailing_whitespace = true
[*]
charset = utf-8
insert_final_newline = true
max_line_length = 200
# style options
csharp_prefer_braces = true
# Applicable to: IDE0011
# true, false, when_multiline
csharp_prefer_simple_default_expression = true
# Applicable to: IDE0034
# true, false
csharp_prefer_simple_using_statement = true
# Applicable to: IDE0063
# true, false
csharp_prefer_static_local_function = true
# Applicable to: IDE0062
# true, false
csharp_preferred_modifier_order = public, private, protected, internal, new, abstract, virtual, sealed, static, readonly, override, extern, unsafe, volatile, async, file, required
# Applicable to: IDE0036
# One or more C# modifiers, such as public, private, and protected
csharp_style_conditional_delegate_call = true
# Applicable to: IDE1005
# true, false
csharp_style_deconstructed_variable_declaration = true
# Applicable to: IDE0042
# true, false
csharp_style_expression_bodied_accessors = true
# Applicable to: IDE0027
# true, when_on_single_line, false
csharp_style_expression_bodied_constructors = true
# Applicable to: IDE0021
# true, when_on_single_line, false
csharp_style_expression_bodied_indexers = true
# Applicable to: IDE0026
# true, when_on_single_line, false
csharp_style_expression_bodied_lambdas = true
# Applicable to: IDE0053
# true, when_on_single_line, false
csharp_style_expression_bodied_local_functions = true
# Applicable to: IDE0061
# true, when_on_single_line, false
csharp_style_expression_bodied_methods = true
# Applicable to: IDE0022
# true, when_on_single_line, false
csharp_style_expression_bodied_operators = true
# Applicable to: IDE0023, IDE0024
# true, when_on_single_line, false
csharp_style_expression_bodied_properties = true
# Applicable to: IDE0025
# true, when_on_single_line, false
csharp_style_implicit_object_creation_when_type_is_apparent = true
# Applicable to: IDE0090
# true, false
csharp_style_inlined_variable_declaration = true
# Applicable to: IDE0018
# true, false
csharp_style_namespace_declarations = file_scoped
# Applicable to: IDE0160, IDE0161
# block_scoped, file_scoped
csharp_style_pattern_matching_over_as_with_null_check = true
# Applicable to: IDE0019, IDE0260
# true, false
csharp_style_pattern_matching_over_is_with_cast_check = true
# Applicable to: IDE0020, IDE0038
# true, false
csharp_style_prefer_extended_property_pattern = true
# Applicable to: IDE0170
# true, false
csharp_style_prefer_index_operator = true
# Applicable to: IDE0056
# true, false
csharp_style_prefer_local_over_anonymous_function = true
# Applicable to: IDE0039
# true, false
csharp_style_prefer_method_group_conversion = true
# Applicable to: IDE0200
# true, false
csharp_style_prefer_not_pattern = true
# Applicable to: IDE0083
# true, false
csharp_style_prefer_null_check_over_type_check = true
# Applicable to: IDE0150
# true, false
csharp_style_prefer_pattern_matching = true
# Applicable to: IDE0078
# true, false
csharp_style_prefer_primary_constructors = true
# Applicable to: IDE0290
# true, false
csharp_style_prefer_range_operator = true
# Applicable to: IDE0057
# true, false
csharp_style_prefer_readonly_struct = true
# Applicable to: IDE0250
# true, false
csharp_style_prefer_readonly_struct_member = true
# Applicable to: IDE0251
# true, false
csharp_style_prefer_switch_expression = true
# Applicable to: IDE0066
# true, false
csharp_style_prefer_top_level_statements = true
# Applicable to: IDE0210, IDE0211
# true, false
csharp_style_prefer_tuple_swap = true
# Applicable to: IDE0180
# true, false
csharp_style_prefer_utf8_string_literals = true
# Applicable to: IDE0230
# true, false
csharp_style_throw_expression = true
# Applicable to: IDE0016
# true, false
csharp_style_unused_value_assignment_preference = discard_variable
# Applicable to: IDE0059
# discard_variable, unused_local_variable
csharp_style_unused_value_expression_statement_preference = discard_variable
# Applicable to: IDE0058
# discard_variable, unused_local_variable
csharp_style_var_elsewhere = true
# Applicable to: IDE0007, IDE0008
# true, false
csharp_style_var_for_built_in_types = true
# Applicable to: IDE0007, IDE0008
# true, false
csharp_style_var_when_type_is_apparent = true
# Applicable to: IDE0007, IDE0008
# true, false
csharp_using_directive_placement = outside_namespace
# Applicable to: IDE0065
# outside_namespace, inside_namespace
dotnet_code_quality_unused_parameters = non_public
# Applicable to: IDE0060
# all, non_public
dotnet_remove_unnecessary_suppression_exclusions = none
# Applicable to: IDE0079
# , separated list of rule IDs or categories (prefixed with category:), all, none
dotnet_style_coalesce_expression = true
# Applicable to: IDE0029, IDE0030, IDE0270
# true, false
dotnet_style_collection_initializer = true
# Applicable to: IDE0028
# true, false
dotnet_style_explicit_tuple_names = true
# Applicable to: IDE0033
# true, false
dotnet_style_namespace_match_folder = true
# Applicable to: IDE0130
# true, false
dotnet_style_null_propagation = true
# Applicable to: IDE0031
# true, false
dotnet_style_object_initializer = true
# Applicable to: IDE0017
# true, false
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
# Applicable to: IDE0047, IDE0048
# always_for_clarity, never_if_unnecessary
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
# Applicable to: IDE0047, IDE0048
# always_for_clarity, never_if_unnecessary
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
# Applicable to: IDE0047, IDE0048
# always_for_clarity, never_if_unnecessary
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
# Applicable to: IDE0047, IDE0048
# always_for_clarity, never_if_unnecessary
dotnet_style_predefined_type_for_locals_parameters_members = true
# Applicable to: IDE0049
# true, false
dotnet_style_predefined_type_for_member_access = true
# Applicable to: IDE0049
# true, false
dotnet_style_prefer_auto_properties = true
# Applicable to: IDE0032
# true, false
dotnet_style_prefer_compound_assignment = true
# Applicable to: IDE0054, IDE0074
# true, false
dotnet_style_prefer_conditional_expression_over_assignment = true
# Applicable to: IDE0045
# true, false
dotnet_style_prefer_conditional_expression_over_return = true
# Applicable to: IDE0046
# true, false
dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed
# Applicable to: IDE0220
# always, when_strongly_typed
dotnet_style_prefer_inferred_anonymous_type_member_names = true
# Applicable to: IDE0037
# true, false
dotnet_style_prefer_inferred_tuple_names = true
# Applicable to: IDE0037
# true, false
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
# Applicable to: IDE0041
# true, false
dotnet_style_prefer_simplified_boolean_expressions = true
# Applicable to: IDE0075
# true, false
dotnet_style_prefer_simplified_interpolation = true
# Applicable to: IDE0071
# true, false
dotnet_style_qualification_for_event = false
# Applicable to: IDE0003, IDE0009
# true, false
dotnet_style_qualification_for_field = false
# Applicable to: IDE0003, IDE0009
# true, false
dotnet_style_qualification_for_method = false
# Applicable to: IDE0003, IDE0009
# true, false
dotnet_style_qualification_for_property = false
# Applicable to: IDE0003, IDE0009
# true, false
dotnet_style_readonly_field = true
# Applicable to: IDE0044
# true, false
dotnet_style_require_accessibility_modifiers = for_non_interface_members
# Applicable to: IDE0040
# always, for_non_interface_members, never, omit_if_default
file_header_template = unset
# Applicable to: IDE0073
# non-empty string, optionally containing a {fileName} placeholder, unset or empty string
visual_basic_preferred_modifier_order = Partial, Default, Private, Protected, Public, Friend, NotOverridable, Overridable, MustOverride, Overloads, Overrides, MustInherit, NotInheritable, Static, Shared, Shadows, ReadOnly, WriteOnly, Dim, Const, WithEvents, Widening, Narrowing, Custom, Async
# Applicable to: IDE0036
# One or more Visual Basic modifiers, such as Partial, Private, and Public
visual_basic_style_prefer_isnot_expression = true
# Applicable to: IDE0084
# true, false
visual_basic_style_prefer_simplified_object_creation = true
# Applicable to: IDE0140
# true, false
visual_basic_style_unused_value_assignment_preference = unused_local_variable
# Applicable to: IDE0059
# unused_local_variable
visual_basic_style_unused_value_expression_statement_preference = unused_local_variable
# Applicable to: IDE0058
# unused_local_variable
# dotnet formatting options
dotnet_separate_import_directive_groups = false
# true, false
dotnet_sort_system_directives_first = true
# true, false
# csharp formatting options
csharp_indent_block_contents = true
# true, false
csharp_indent_braces = false
# true, false
csharp_indent_case_contents = true
# true, false
csharp_indent_case_contents_when_block = true
# true, false
csharp_indent_labels = no_change
# flush_left, one_less_than_current, no_change
csharp_indent_switch_labels = true
# true, false
csharp_new_line_before_catch = true
# true, false
csharp_new_line_before_else = true
# true, false
csharp_new_line_before_finally = true
# true, false
csharp_new_line_before_members_in_anonymous_types = true
# true, false
csharp_new_line_before_members_in_object_initializers = false
# true, false
csharp_new_line_before_open_brace = all
# all, none, accessors, anonymous_methods, anonymous_types, control_blocks, events, indexers,lambdas, local_functions, methods, object_collection_array_initializers, properties, types
csharp_new_line_between_query_expression_clauses = true
# true, false
csharp_preserve_single_line_blocks = true
# true, false
csharp_preserve_single_line_statements = true
# true, false
csharp_space_after_cast = false
# true, false
csharp_space_after_colon_in_inheritance_clause = true
# true, false
csharp_space_after_comma = true
# true, false
csharp_space_after_dot = false
# true, false
csharp_space_after_keywords_in_control_flow_statements = true
# true, false
csharp_space_after_semicolon_in_for_statement = true
# true, false
csharp_space_around_binary_operators = before_and_after
# before_and_after, none, ignore
csharp_space_around_declaration_statements = false
# ignore, false
csharp_space_before_colon_in_inheritance_clause = true
# true, false
csharp_space_before_comma = false
# true, false
csharp_space_before_dot = false
# true, false
csharp_space_before_open_square_brackets = false
# true, false
csharp_space_before_semicolon_in_for_statement = false
# true, false
csharp_space_between_empty_square_brackets = false
# true, false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
# true, false
csharp_space_between_method_call_name_and_opening_parenthesis = false
# true, false
csharp_space_between_method_call_parameter_list_parentheses = false
# true, false
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
# true, false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
# true, false
csharp_space_between_method_declaration_parameter_list_parentheses = false
# true, false
csharp_space_between_parentheses = expressions
# control_flow_statements, expressions, type_casts
csharp_space_between_square_brackets = false
# true, false
# global severity
# dotnet_analyzer_diagnostic.category-CodeQuality.severity =
# dotnet_analyzer_diagnostic.category-Design.severity =
# dotnet_analyzer_diagnostic.category-Documentation.severity =
# dotnet_analyzer_diagnostic.category-Globalization.severity =
# dotnet_analyzer_diagnostic.category-Interoperability.severity =
# dotnet_analyzer_diagnostic.category-Maintainability.severity =
# dotnet_analyzer_diagnostic.category-Naming.severity =
# dotnet_analyzer_diagnostic.category-Performance.severity =
# dotnet_analyzer_diagnostic.category-Reliability.severity =
# dotnet_analyzer_diagnostic.category-Security.severity =
# dotnet_analyzer_diagnostic.category-Style.severity =
# dotnet_analyzer_diagnostic.category-Usage.severity =
#### Naming styles ####
dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_style.camel_case.required_prefix =
dotnet_naming_style.camel_case.required_suffix =
dotnet_naming_style.camel_case.word_separator =
dotnet_naming_style.camel_case.capitalization = camel_case
dotnet_naming_style.underscore_camel_case.required_prefix = _
dotnet_naming_style.underscore_camel_case.required_suffix =
dotnet_naming_style.underscore_camel_case.word_separator =
dotnet_naming_style.underscore_camel_case.capitalization = camel_case
dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case
dotnet_naming_style.begins_with_t.required_prefix = T
dotnet_naming_style.begins_with_t.required_suffix =
dotnet_naming_style.begins_with_t.word_separator =
dotnet_naming_style.begins_with_t.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_rule.constants_rule.import_to_resharper = as_predefined
dotnet_naming_rule.constants_rule.resharper_style = AaBb, aaBb
dotnet_naming_rule.constants_rule.severity = suggestion
dotnet_naming_rule.constants_rule.style = pascal_case
dotnet_naming_rule.constants_rule.symbols = constants_symbols
dotnet_naming_symbols.const_field.applicable_kinds = field
dotnet_naming_symbols.const_field.applicable_accessibilities = *
dotnet_naming_symbols.const_field.required_modifiers = const
dotnet_naming_rule.const_field_should_be_pascal_case.import_to_resharper = true
dotnet_naming_rule.const_field_should_be_pascal_case.resharper_description = const_field_should_be_pascal_case
dotnet_naming_rule.const_field_should_be_pascal_case.resharper_guid = 27af0a55-f4e1-46bc-9d79-134591675ffa
dotnet_naming_rule.const_field_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.const_field_should_be_pascal_case.symbols = const_field
dotnet_naming_rule.const_field_should_be_pascal_case.style = pascal_case
dotnet_naming_symbols.event_symbols.applicable_accessibilities = *
dotnet_naming_symbols.event_symbols.applicable_kinds = event
dotnet_naming_symbols.event_symbols.resharper_applicable_kinds = event
dotnet_naming_symbols.event_symbols.resharper_required_modifiers = any
dotnet_naming_rule.event_rule.import_to_resharper = true
dotnet_naming_rule.event_rule.resharper_description = Event
dotnet_naming_rule.event_rule.resharper_guid = 8ba6904e-f415-4563-b06d-f9c4a22b5368
dotnet_naming_rule.event_rule.severity = suggestion
dotnet_naming_rule.event_rule.style = pascal_case
dotnet_naming_rule.event_rule.symbols = event_symbols
dotnet_naming_symbols.field.applicable_kinds = field
dotnet_naming_symbols.field.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.field.required_modifiers =
dotnet_naming_rule.field_should_be_camel_case.import_to_resharper = as_predefined
dotnet_naming_rule.field_should_be_camel_case.severity = suggestion
dotnet_naming_rule.field_should_be_camel_case.symbols = field
dotnet_naming_rule.field_should_be_camel_case.style = camel_case
dotnet_naming_symbols.interfaces_symbols.applicable_accessibilities = *
dotnet_naming_symbols.interfaces_symbols.applicable_kinds = interface
dotnet_naming_symbols.interfaces_symbols.resharper_applicable_kinds = interface
dotnet_naming_symbols.interfaces_symbols.resharper_required_modifiers = any
dotnet_naming_rule.interfaces_rule.import_to_resharper = true
dotnet_naming_rule.interfaces_rule.resharper_description = Interfaces
dotnet_naming_rule.interfaces_rule.resharper_guid = 903d2bf9-e112-4da9-9936-d1aa378a0c9a
dotnet_naming_rule.interfaces_rule.severity = suggestion
dotnet_naming_rule.interfaces_rule.style = begins_with_i
dotnet_naming_rule.interfaces_rule.symbols = interfaces_symbols
dotnet_naming_symbols.locals_symbols.import_to_resharper = as_predefined
dotnet_naming_symbols.locals_symbols.applicable_accessibilities = *
dotnet_naming_symbols.locals_symbols.applicable_kinds = local
dotnet_naming_symbols.locals_symbols.resharper_applicable_kinds = local_variable
dotnet_naming_symbols.locals_symbols.resharper_required_modifiers = any
dotnet_naming_rule.locals_rule.import_to_resharper = true
dotnet_naming_rule.locals_rule.resharper_description = Locals
dotnet_naming_rule.locals_rule.resharper_guid = ccfc9f7c-73a7-4c09-84d4-738c2928dc25
dotnet_naming_rule.locals_rule.severity = suggestion
dotnet_naming_rule.locals_rule.style = camel_case
dotnet_naming_rule.locals_rule.symbols = locals_symbols
dotnet_naming_symbols.local.applicable_kinds = local, local_function
dotnet_naming_symbols.local.applicable_accessibilities = *
dotnet_naming_symbols.local.required_modifiers =
dotnet_naming_rule.locals_should_be_camel_case.import_to_resharper = true
dotnet_naming_rule.locals_should_be_camel_case.resharper_description = locals_should_be_camel_case
dotnet_naming_rule.locals_should_be_camel_case.resharper_guid = d8baf024-3f69-46f8-8808-49d328121492
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion
dotnet_naming_rule.locals_should_be_camel_case.symbols = local
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case
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_constants_symbols.resharper_applicable_kinds = local_constant
dotnet_naming_symbols.local_constants_symbols.resharper_required_modifiers = any
dotnet_naming_rule.local_constants_rule.import_to_resharper = true
dotnet_naming_rule.local_constants_rule.resharper_description = LocalConstants
dotnet_naming_rule.local_constants_rule.resharper_guid = 307b234d-2464-49eb-93b6-23ebd7658b91
dotnet_naming_rule.local_constants_rule.severity = suggestion
dotnet_naming_rule.local_constants_rule.style = camel_case
dotnet_naming_rule.local_constants_rule.symbols = local_constants_symbols
dotnet_naming_symbols.local_functions_symbols.applicable_accessibilities = *
dotnet_naming_symbols.local_functions_symbols.applicable_kinds = local_function
dotnet_naming_symbols.local_functions_symbols.resharper_applicable_kinds = local_function
dotnet_naming_symbols.local_functions_symbols.resharper_required_modifiers = any
dotnet_naming_rule.local_functions_rule.import_to_resharper = true
dotnet_naming_rule.local_functions_rule.resharper_description = LocalFunctions
dotnet_naming_rule.local_functions_rule.resharper_guid = e073ca3c-9b60-4c32-86c2-2c62711d40ff
dotnet_naming_rule.local_functions_rule.severity = suggestion
dotnet_naming_rule.local_functions_rule.style = camel_case
dotnet_naming_rule.local_functions_rule.symbols = local_functions_symbols
dotnet_naming_symbols.method_symbols.applicable_accessibilities = *
dotnet_naming_symbols.method_symbols.applicable_kinds = method
dotnet_naming_symbols.method_symbols.resharper_applicable_kinds = method
dotnet_naming_symbols.method_symbols.resharper_required_modifiers = any
dotnet_naming_rule.method_rule.import_to_resharper = true
dotnet_naming_rule.method_rule.resharper_description = Method
dotnet_naming_rule.method_rule.resharper_guid = e0bd13f1-ec9d-408b-baee-bba34db87d92
dotnet_naming_rule.method_rule.severity = suggestion
dotnet_naming_rule.method_rule.style = pascal_case
dotnet_naming_rule.method_rule.symbols = method_symbols
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = *
dotnet_naming_symbols.non_field_members.required_modifiers =
dotnet_naming_rule.non_field_members_should_be_pascal_case.import_to_resharper = true
dotnet_naming_rule.non_field_members_should_be_pascal_case.resharper_description = non_field_members_should_be_pascal_case
dotnet_naming_rule.non_field_members_should_be_pascal_case.resharper_guid = 9bcd52d1-0899-4eb1-a70f-ef70ce155425
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
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_rule.private_constants_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_constants_rule.resharper_style = AaBb, _ + aaBb
dotnet_naming_rule.private_constants_rule.severity = suggestion
dotnet_naming_rule.private_constants_rule.style = pascal_case
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
dotnet_naming_symbols.private_field.applicable_kinds = field
dotnet_naming_symbols.private_field.applicable_accessibilities = private, private_protected
dotnet_naming_symbols.private_field.required_modifiers =
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.import_to_resharper = true
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.resharper_description = private_field_members_should_be_underscore_camel_case
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.resharper_guid = cd60d07f-46cf-4df5-b2fe-8979b0be86a6
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.severity = suggestion
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.symbols = private_field
dotnet_naming_rule.private_field_members_should_be_underscore_camel_case.style = underscore_camel_case
dotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = local,private
dotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.private_instance_fields_symbols.resharper_applicable_kinds = field,readonly_field
dotnet_naming_symbols.private_instance_fields_symbols.resharper_required_modifiers = instance
dotnet_naming_rule.private_instance_fields_rule.import_to_resharper = true
dotnet_naming_rule.private_instance_fields_rule.resharper_description = PrivateInstanceFields
dotnet_naming_rule.private_instance_fields_rule.resharper_guid = 55b310ff-8182-4b42-80a2-71190f858154
dotnet_naming_rule.private_instance_fields_rule.severity = suggestion
dotnet_naming_rule.private_instance_fields_rule.style = underscore_camel_case
dotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols
dotnet_naming_symbols.private_static_fields_override_symbols.applicable_accessibilities = local,private
dotnet_naming_symbols.private_static_fields_override_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_fields_override_symbols.required_modifiers = const,static
dotnet_naming_rule.private_static_fields_override_rule.import_to_resharper = False
dotnet_naming_rule.private_static_fields_override_rule.resharper_style = AaBb, _ + aaBb
dotnet_naming_rule.private_static_fields_override_rule.severity = suggestion
dotnet_naming_rule.private_static_fields_override_rule.style = pascal_case
dotnet_naming_rule.private_static_fields_override_rule.symbols = private_static_fields_override_symbols
dotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = local,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_fields_symbols.resharper_applicable_kinds = field
dotnet_naming_symbols.private_static_fields_symbols.resharper_required_modifiers = static
dotnet_naming_rule.private_static_fields_rule.import_to_resharper = true
dotnet_naming_rule.private_static_fields_rule.resharper_description = PrivateStaticFields
dotnet_naming_rule.private_static_fields_rule.resharper_guid = 0340ebab-0163-4789-a557-a8c34cb1f90d
dotnet_naming_rule.private_static_fields_rule.severity = suggestion
dotnet_naming_rule.private_static_fields_rule.style = camel_case
dotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols
dotnet_naming_symbols.static_field.applicable_kinds = field
dotnet_naming_symbols.static_field.applicable_accessibilities =
dotnet_naming_symbols.static_field.required_modifiers = static
dotnet_naming_rule.static_field_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field
dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case
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_rule.static_readonly_rule.import_to_resharper = as_predefined
dotnet_naming_rule.static_readonly_rule.severity = suggestion
dotnet_naming_rule.static_readonly_rule.style = camel_case
dotnet_naming_rule.static_readonly_rule.symbols = static_readonly_symbols
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_rule.private_static_readonly_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_static_readonly_rule.severity = suggestion
dotnet_naming_rule.private_static_readonly_rule.style = underscore_camel_case
dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols
dotnet_naming_symbols.property_symbols.applicable_accessibilities = *
dotnet_naming_symbols.property_symbols.applicable_kinds = property
dotnet_naming_symbols.property_symbols.resharper_applicable_kinds = property
dotnet_naming_symbols.property_symbols.resharper_required_modifiers = any
dotnet_naming_rule.property_rule.import_to_resharper = true
dotnet_naming_rule.property_rule.resharper_description = Property
dotnet_naming_rule.property_rule.resharper_guid = 1431d102-1749-4437-801e-62d27014d538
dotnet_naming_rule.property_rule.severity = suggestion
dotnet_naming_rule.property_rule.style = pascal_case
dotnet_naming_rule.property_rule.symbols = property_symbols
dotnet_naming_symbols.public_fields_instance_symbols.applicable_accessibilities = local,public,internal,protected,protected_internal,private_protected
dotnet_naming_symbols.public_fields_instance_symbols.applicable_kinds = field
dotnet_naming_symbols.public_fields_instance_symbols.resharper_applicable_kinds = field,readonly_field
dotnet_naming_symbols.public_fields_instance_symbols.resharper_required_modifiers = instance
dotnet_naming_rule.public_fields_instance_rule.import_to_resharper = true
dotnet_naming_rule.public_fields_instance_rule.resharper_description = PublicFieldsInstance
dotnet_naming_rule.public_fields_instance_rule.resharper_guid = 63e9f6f8-2fe3-4dd5-8c78-cbbffc2e33c5
dotnet_naming_rule.public_fields_instance_rule.severity = suggestion
dotnet_naming_rule.public_fields_instance_rule.style = camel_case
dotnet_naming_rule.public_fields_instance_rule.symbols = public_fields_instance_symbols
dotnet_naming_symbols.public_fields_static_override_symbols.applicable_accessibilities = local,public,internal,protected,protected_internal,private_protected
dotnet_naming_symbols.public_fields_static_override_symbols.applicable_kinds = field
dotnet_naming_symbols.public_fields_static_override_symbols.required_modifiers = const,static
dotnet_naming_rule.public_fields_static_override_rule.import_to_resharper = False
dotnet_naming_rule.public_fields_static_override_rule.resharper_style = AaBb, aaBb
dotnet_naming_rule.public_fields_static_override_rule.severity = suggestion
dotnet_naming_rule.public_fields_static_override_rule.style = pascal_case
dotnet_naming_rule.public_fields_static_override_rule.symbols = public_fields_static_override_symbols
dotnet_naming_symbols.public_fields_static_symbols.applicable_accessibilities = local,public,internal,protected,protected_internal,private_protected
dotnet_naming_symbols.public_fields_static_symbols.applicable_kinds = field
dotnet_naming_symbols.public_fields_static_symbols.required_modifiers = static
dotnet_naming_symbols.public_fields_static_symbols.resharper_applicable_kinds = field
dotnet_naming_symbols.public_fields_static_symbols.resharper_required_modifiers = static
dotnet_naming_rule.public_fields_static_rule.import_to_resharper = true
dotnet_naming_rule.public_fields_static_rule.resharper_description = PublicFieldsStatic
dotnet_naming_rule.public_fields_static_rule.resharper_guid = 4d6f03af-7a77-4c49-b199-6569a7d9735a
dotnet_naming_rule.public_fields_static_rule.severity = suggestion
dotnet_naming_rule.public_fields_static_rule.style = camel_case
dotnet_naming_rule.public_fields_static_rule.symbols = public_fields_static_symbols
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.types_and_namespaces_symbols.applicable_accessibilities = *
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_kinds = namespace,class,struct,enum,delegate
dotnet_naming_symbols.types_and_namespaces_symbols.resharper_applicable_kinds = namespace,class,struct,enum,delegate
dotnet_naming_symbols.types_and_namespaces_symbols.resharper_required_modifiers = any
dotnet_naming_rule.types_and_namespaces_rule.import_to_resharper = true
dotnet_naming_rule.types_and_namespaces_rule.resharper_description = TypesAndNamespaces
dotnet_naming_rule.types_and_namespaces_rule.resharper_guid = 0a6a56d2-979e-4bff-9381-5bc2a166009a
dotnet_naming_rule.types_and_namespaces_rule.severity = suggestion
dotnet_naming_rule.types_and_namespaces_rule.style = pascal_case
dotnet_naming_rule.types_and_namespaces_rule.symbols = types_and_namespaces_symbols
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum, delegate
dotnet_naming_symbols.types.applicable_accessibilities = *
dotnet_naming_symbols.types.required_modifiers =
dotnet_naming_rule.types_should_be_pascal_case.import_to_resharper = true
dotnet_naming_rule.types_should_be_pascal_case.resharper_description = types_should_be_pascal_case
dotnet_naming_rule.types_should_be_pascal_case.resharper_guid = 0fc27715-3a4f-4d67-bf17-dc8b6680ce65
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities = *
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds =
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds = unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers = instance
dotnet_naming_rule.unity_serialized_field_rule.import_to_resharper = true
dotnet_naming_rule.unity_serialized_field_rule.resharper_description = Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule.severity = warning
dotnet_naming_rule.unity_serialized_field_rule.style = camel_case
dotnet_naming_rule.unity_serialized_field_rule.symbols = unity_serialized_field_symbols
dotnet_naming_symbols.type_parameter.applicable_kinds = type_parameter
dotnet_naming_symbols.type_parameter.applicable_accessibilities = *
dotnet_naming_symbols.type_parameter.required_modifiers =
dotnet_naming_rule.type_parameter_should_be_begins_with_t.import_to_resharper = as_predefined
dotnet_naming_rule.type_parameter_should_be_begins_with_t.severity = suggestion
dotnet_naming_rule.type_parameter_should_be_begins_with_t.symbols = type_parameter
dotnet_naming_rule.type_parameter_should_be_begins_with_t.style = begins_with_t
# Naming rules
# Symbol specifications
# CS0436: Compiler Warning (level 2) CS0436
dotnet_diagnostic.cs0436.severity = none
# CA1000: Do not declare static members on generic types
dotnet_diagnostic.CA1000.severity = none
# Options: api_surface
dotnet_code_quality.CA1000.api_surface = public # public, internal, friend, all
# CA1001: Types that own disposable fields should be disposable
dotnet_diagnostic.CA1001.severity = none
# Options: excluded_symbol_names, excluded_type_names_with_derived_types
# dotnet_code_quality.CA1001.excluded_type_names_with_derived_types =
# dotnet_code_quality.CA1001.excluded_symbol_names =
# CA1002: Do not expose generic lists
dotnet_diagnostic.CA1002.severity = none
# Options: api_surface
dotnet_code_quality.CA1002.api_surface = public # public, internal, friend, all
# CA1003: Use generic event handler instances
dotnet_diagnostic.CA1003.severity = none
# Options: api_surface
dotnet_code_quality.CA1003.api_surface = public # public, internal, friend, all
# CA1005: Avoid excessive parameters on generic types
dotnet_diagnostic.CA1005.severity = none
# Options: api_surface
dotnet_code_quality.CA1005.api_surface = public # public, internal, friend, all
# CA1008: Enums should have zero value
dotnet_diagnostic.CA1008.severity = none
# Options: api_surface, additional_enum_none_names
dotnet_code_quality.CA1008.api_surface = public # public, internal, friend, all
# CA1010: Collections should implement generic interface
dotnet_diagnostic.CA1010.severity = none
# Options: api_surface, additional_required_generic_interfaces
dotnet_code_quality.CA1010.api_surface = public # public, internal, friend, all
# CA1012: Abstract types should not have public constructors
dotnet_diagnostic.CA1012.severity = none
# Options: api_surface
dotnet_code_quality.CA1012.api_surface = public # public, internal, friend, all
# CA1014: Mark assemblies with CLSCompliantAttribute
dotnet_diagnostic.CA1014.severity = none
# CA1016: Mark assemblies with AssemblyVersionAttribute
dotnet_diagnostic.CA1016.severity = none
# CA1017: Mark assemblies with Mark assemblies with ComVisibleAttribute
dotnet_diagnostic.CA1017.severity = none
# CA1018: Mark attributes with AttributeUsageAttribute
dotnet_diagnostic.CA1018.severity = none
# CA1019: Define accessors for attribute arguments
dotnet_diagnostic.CA1019.severity = none
# CA1021: Avoid out parameters
dotnet_diagnostic.CA1021.severity = none
# Options: api_surface
dotnet_code_quality.CA1021.api_surface = public # public, internal, friend, all
# CA1024: Use properties where appropriate
dotnet_diagnostic.CA1024.severity = none
# Options: api_surface
dotnet_code_quality.CA1024.api_surface = public # public, internal, friend, all
# CA1027: Mark enums with FlagsAttribute
dotnet_diagnostic.CA1027.severity = none
# Options: api_surface
dotnet_code_quality.CA1027.api_surface = public # public, internal, friend, all
# CA1028: Enum storage should be Int32
dotnet_diagnostic.CA1028.severity = none
# Options: api_surface
dotnet_code_quality.CA1028.api_surface = public # public, internal, friend, all
# CA1030: Use events where appropriate
dotnet_diagnostic.CA1030.severity = none
# Options: api_surface
dotnet_code_quality.CA1030.api_surface = public # public, internal, friend, all
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# Options: disallowed_symbol_names
# dotnet_code_quality.CA1031.disallowed_symbol_names =
# CA1032: Implement standard exception constructors
dotnet_diagnostic.CA1032.severity = none
# CA1033: Interface methods should be callable by child types
dotnet_diagnostic.CA1033.severity = none
# CA1034: Nested types should not be visible
dotnet_diagnostic.CA1034.severity = none
# CA1036: Override methods on comparable types
dotnet_diagnostic.CA1036.severity = none
# Options: api_surface
dotnet_code_quality.CA1036.api_surface = public # public, internal, friend, all
# CA1040: Avoid empty interfaces
dotnet_diagnostic.CA1040.severity = none
# Options: api_surface
dotnet_code_quality.CA1040.api_surface = public # public, internal, friend, all
# CA1041: Provide ObsoleteAttribute message
dotnet_diagnostic.CA1041.severity = none
# Options: api_surface
dotnet_code_quality.CA1041.api_surface = public # public, internal, friend, all
# CA1043: Use integral or string argument for indexers
dotnet_diagnostic.CA1043.severity = none
# Options: api_surface
dotnet_code_quality.CA1043.api_surface = public # public, internal, friend, all
# CA1044: Properties should not be write only
dotnet_diagnostic.CA1044.severity = none
# Options: api_surface
dotnet_code_quality.CA1044.api_surface = public # public, internal, friend, all
# CA1045: Do not pass types by reference
dotnet_diagnostic.CA1045.severity = none
# Options: api_surface
dotnet_code_quality.CA1045.api_surface = public # public, internal, friend, all
# CA1046: Do not overload operator equals on reference types
dotnet_diagnostic.CA1046.severity = none
# Options: api_surface
dotnet_code_quality.CA1046.api_surface = public # public, internal, friend, all
# CA1047: Do not declare protected members in sealed types
dotnet_diagnostic.CA1047.severity = none
# Options: api_surface
dotnet_code_quality.CA1047.api_surface = public # public, internal, friend, all
# CA1050: Declare types in namespaces
dotnet_diagnostic.CA1050.severity = none
# CA1051: Do not declare visible instance fields
dotnet_diagnostic.CA1051.severity = none
# Options: api_surface, exclude_structs
dotnet_code_quality.CA1051.api_surface = public # public, internal, friend, all
# CA1052: Static holder types should be Static or NotInheritable
dotnet_diagnostic.CA1052.severity = none
# Options: api_surface
dotnet_code_quality.CA1052.api_surface = public # public, internal, friend, all
# CA1053: Static holder types should not have default constructors
dotnet_diagnostic.CA1053.severity = none
# CA1054: URI parameters should not be strings
dotnet_diagnostic.CA1054.severity = none
# Options: api_surface, excluded_symbol_names, excluded_type_names_with_derived_types
dotnet_code_quality.CA1054.api_surface = public # public, internal, friend, all
# dotnet_code_quality.CA1054.excluded_type_names_with_derived_types =
# dotnet_code_quality.CA1054.excluded_symbol_names =
# CA1055: URI return values should not be strings
dotnet_diagnostic.CA1055.severity = none
# Options: api_surface, excluded_symbol_names, excluded_type_names_with_derived_types
dotnet_code_quality.CA1055.api_surface = public # public, internal, friend, all
# dotnet_code_quality.CA1055.excluded_type_names_with_derived_types =
# dotnet_code_quality.CA1055.excluded_symbol_names =
# CA1056: URI properties should not be strings
dotnet_diagnostic.CA1056.severity = none
# Options: api_surface, excluded_symbol_names, excluded_type_names_with_derived_types
dotnet_code_quality.CA1056.api_surface = public # public, internal, friend, all
# dotnet_code_quality.CA1056.excluded_type_names_with_derived_types =
# dotnet_code_quality.CA1056.excluded_symbol_names =
# CA1058: Types should not extend certain base types