@@ -131,12 +131,17 @@ dotnet_diagnostic.CA2201.severity = warning # Exception type System.Exception is
131
131
132
132
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
133
133
134
+ dotnet_naming_style.camel_case_style.capitalization = camel_case
135
+
134
136
dotnet_naming_style.static_underscored.capitalization = camel_case
135
137
dotnet_naming_style.static_underscored.required_prefix = s_
136
138
137
139
dotnet_naming_style.underscored.capitalization = camel_case
138
140
dotnet_naming_style.underscored.required_prefix = _
139
141
142
+ dotnet_naming_style.uppercase_with_underscore_separator.capitalization = all_upper
143
+ dotnet_naming_style.uppercase_with_underscore_separator.word_separator = _
144
+
140
145
dotnet_naming_style.end_in_async.required_prefix =
141
146
dotnet_naming_style.end_in_async.required_suffix = Async
142
147
dotnet_naming_style.end_in_async.capitalization = pascal_case
@@ -148,6 +153,10 @@ dotnet_naming_symbols.constant_fields.applicable_kinds = field
148
153
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
149
154
dotnet_naming_symbols.constant_fields.required_modifiers = const
150
155
156
+ dotnet_naming_symbols.local_constant.applicable_kinds = local
157
+ dotnet_naming_symbols.local_constant.applicable_accessibilities = *
158
+ dotnet_naming_symbols.local_constant.required_modifiers = const
159
+
151
160
dotnet_naming_symbols.private_static_fields.applicable_kinds = field
152
161
dotnet_naming_symbols.private_static_fields.applicable_accessibilities = private
153
162
dotnet_naming_symbols.private_static_fields.required_modifiers = static
@@ -161,9 +170,13 @@ dotnet_naming_symbols.any_async_methods.required_modifiers = async
161
170
162
171
# Rules
163
172
164
- dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = error
165
- dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
173
+ dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
166
174
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
175
+ dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = error
176
+
177
+ dotnet_naming_rule.local_constant_should_be_pascal_case.symbols = local_constant
178
+ dotnet_naming_rule.local_constant_should_be_pascal_case.style = pascal_case_style
179
+ dotnet_naming_rule.local_constant_should_be_pascal_case.severity = error
167
180
168
181
dotnet_naming_rule.private_static_fields_underscored.symbols = private_static_fields
169
182
dotnet_naming_rule.private_static_fields_underscored.style = static_underscored
0 commit comments