-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
45 lines (38 loc) · 1.88 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
34
35
36
37
38
39
40
41
42
43
44
45
root = true
[*]
charset = utf-8
end_of_line = lf
tab_width = 4
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 9999
[{*.html,*.js,*.json,*.css,*.scss,*.yml}]
indent_size = 2
[*.cs]
dotnet_naming_rule.private_internal_protected_fields_camel_case.severity = suggestion
dotnet_naming_rule.private_internal_protected_fields_camel_case.style = camel_case_underscore_style
dotnet_naming_rule.private_internal_protected_fields_camel_case.symbols = private_internal_protected_fields
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
dotnet_naming_symbols.private_internal_protected_fields.applicable_accessibilities = private, internal, protected
dotnet_naming_symbols.private_internal_protected_fields.applicable_kinds = field
dotnet_naming_rule.type_parameters_pascal_case_no_prefix.severity = suggestion
dotnet_naming_rule.type_parameters_pascal_case_no_prefix.style = pascal_case_no_prefix
dotnet_naming_rule.type_parameters_pascal_case_no_prefix.symbols = type_parameters
dotnet_naming_style.pascal_case_no_prefix.capitalization = pascal_case
dotnet_naming_symbols.type_parameters.applicable_kinds = type_parameter
csharp_style_var_elsewhere = false:suggestion
csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = false:suggestion
resharper_csharp_for_built_in_types = use_explicit_type
resharper_csharp_for_simple_types = use_explicit_type
resharper_csharp_for_other_types = use_explicit_type
resharper_for_built_in_types = use_explicit_type
resharper_for_simple_types = use_explicit_type
resharper_for_other_types = use_explicit_type
resharper_csharp_type_declaration_braces = end_of_line
resharper_csharp_brace_style = end_of_line
resharper_type_declaration_braces = end_of_line
resharper_brace_style = end_of_line