generated from acidbubbles/vam-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.editorconfig
33 lines (23 loc) · 1.23 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
root = true
[*.cs]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
# Styles
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _
# Const
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
dotnet_naming_symbols.constant_fields.required_modifiers = const
dotnet_naming_rule.const_pascal_case.symbols = constant_fields
dotnet_naming_rule.const_pascal_case.capitalization = pascal_case
dotnet_naming_rule.const_pascal_case.severity = suggestion
# Private
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
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