-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.editorconfig
26 lines (21 loc) · 967 Bytes
/
.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
root = true
[*]
indent_style = tab
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true
[*.cs]
dotnet_diagnostic.DI0002.excluded_namespaces=System
dotnet_diagnostic.DI0002.excluded_files=AutoFake/ContainerExtensions.cs
dotnet_diagnostic.DI0002.exclude_private_types=True
dotnet_diagnostic.DI0003.allowed_number_of_dependencies=5
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_symbols.private_fields.required_modifiers = readonly
dotnet_naming_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _