@@ -15,7 +15,7 @@ max_line_length = 120
1515end_of_line = crlf
1616insert_final_newline = true
1717
18- # Visual Studio
18+ # Visual Studio
1919csharp_style_namespace_declarations = file_scoped # Use file scoped namespace by default for new class files
2020
2121# ## Naming styles ###
@@ -46,11 +46,11 @@ dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = stat
4646
4747dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
4848dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
49- dotnet_naming_symbols.private_or_internal_field.required_modifiers =
49+ dotnet_naming_symbols.private_or_internal_field.required_modifiers =
5050
5151dotnet_naming_symbols.local.applicable_kinds = local
5252dotnet_naming_symbols.local.applicable_accessibilities = local
53- dotnet_naming_symbols.local.required_modifiers =
53+ dotnet_naming_symbols.local.required_modifiers =
5454
5555dotnet_naming_symbols.constant_field.applicable_kinds = field
5656dotnet_naming_symbols.constant_field.applicable_accessibilities = *
@@ -59,18 +59,18 @@ dotnet_naming_symbols.constant_field.required_modifiers = const
5959# Naming styles
6060
6161dotnet_naming_style._fieldname.required_prefix = _
62- dotnet_naming_style._fieldname.required_suffix =
63- dotnet_naming_style._fieldname.word_separator =
62+ dotnet_naming_style._fieldname.required_suffix =
63+ dotnet_naming_style._fieldname.word_separator =
6464dotnet_naming_style._fieldname.capitalization = camel_case
6565
66- dotnet_naming_style.camelcase.required_prefix =
67- dotnet_naming_style.camelcase.required_suffix =
68- dotnet_naming_style.camelcase.word_separator =
66+ dotnet_naming_style.camelcase.required_prefix =
67+ dotnet_naming_style.camelcase.required_suffix =
68+ dotnet_naming_style.camelcase.word_separator =
6969dotnet_naming_style.camelcase.capitalization = camel_case
7070
71- dotnet_naming_style.pascal_case.required_prefix =
72- dotnet_naming_style.pascal_case.required_suffix =
73- dotnet_naming_style.pascal_case.word_separator =
71+ dotnet_naming_style.pascal_case.required_prefix =
72+ dotnet_naming_style.pascal_case.required_suffix =
73+ dotnet_naming_style.pascal_case.word_separator =
7474dotnet_naming_style.pascal_case.capitalization = pascal_case
7575
7676# ## Stylecop rules ###
@@ -87,6 +87,7 @@ dotnet_diagnostic.sa1101.severity = none # Prefix local calls with this
8787dotnet_diagnostic.sa1200.severity = none # Using directive should appear within a namespace declaration
8888dotnet_diagnostic.sa1201.severity = suggestion # Elements should appear in the correct order
8989dotnet_diagnostic.sa1202.severity = suggestion # Elements should be ordered by access
90+ dotnet_diagnostic.sa1204.severity = suggestion # Static members should appear before non-static members
9091
9192# Naming
9293
@@ -102,13 +103,16 @@ dotnet_diagnostic.sa1402.severity = suggestion # File may only contain a single
102103dotnet_diagnostic.sa1502.severity = none # Element should not be on a single line
103104dotnet_diagnostic.sa1503.severity = none # Braces should not be omitted
104105dotnet_diagnostic.sa1515.severity = suggestion # Single-line comment should be preceded by blank line
106+
105107# Documentation
106108
107109dotnet_diagnostic.sa1600.severity = none # Elements should be documented
108110dotnet_diagnostic.sa1601.severity = none # Partial elements should be documented
109111dotnet_diagnostic.sa1602.severity = none # Enumeration items should be documented
110112dotnet_diagnostic.sa1611.severity = none # Element parameter should be documented
111113dotnet_diagnostic.sa1615.severity = none # Element return value should be documented
114+ dotnet_diagnostic.sa1623.severity = none # The property's documentation summary text should begin with: ' Gets or sets'
115+ dotnet_diagnostic.sa1629.severity = none # Documentation text should end with a period
112116dotnet_diagnostic.sa1633.severity = none # File should have header
113117dotnet_diagnostic.sa1649.severity = none # File name should match first type name
114118
@@ -186,7 +190,7 @@ resharper_csharp_wrap_extends_list_style = chop_always
186190resharper_csharp_wrap_parameters_style = chop_if_long
187191resharper_for_built_in_types = use_var_when_evident
188192resharper_for_other_types = use_var_when_evident
189- resharper_instance_members_qualify_declared_in =
193+ resharper_instance_members_qualify_declared_in =
190194resharper_keep_existing_embedded_block_arrangement = false
191195resharper_keep_existing_enum_arrangement = false
192196resharper_nested_ternary_style = expanded
0 commit comments