-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.editorconfig
19 lines (17 loc) · 1.15 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[*.{cs}]
dotnet_naming_rule.private_members_with_underscore.symbols = private_fields
dotnet_naming_rule.private_members_with_underscore.style = prefix_underscore
dotnet_naming_rule.private_members_with_underscore.severity = suggestion
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
dotnet_naming_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _
# Expression-bodied members
csharp_style_expression_bodied_methods = true : suggestion
csharp_style_expression_bodied_constructors = true : silent
csharp_style_expression_bodied_operators = true : silent
csharp_style_expression_bodied_properties = true : suggestion
csharp_style_expression_bodied_indexers = true : silent
csharp_style_expression_bodied_accessors = true : silent
# Async methods should have "Async" suffix
dotnet_naming_style.end_in_async.required_suffix = Async