-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
58 lines (50 loc) · 2.39 KB
/
.editorconfig
File metadata and controls
58 lines (50 loc) · 2.39 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_size = 4
insert_final_newline = false
trim_trailing_whitespace = true
[*.yml]
indent_style = space
indent_size = 2
[*.cs]
csharp_default_internal_modifier = explicit
csharp_style_var_for_built_in_types = false:warning
csharp_style_var_when_type_is_apparent = true:suggestion
dotnet_style_require_accessibility_modifiers = always
resharper_arrange_object_creation_when_type_evident_highlighting = hint
resharper_arrange_this_qualifier_highlighting = none
resharper_check_namespace_highlighting = none
resharper_convert_if_statement_to_return_statement_highlighting = none
resharper_convert_if_statement_to_switch_statement_highlighting = hint
resharper_csharp_default_internal_modifier = explicit
resharper_field_can_be_made_read_only_local_highlighting = warning
resharper_invert_if_highlighting = none
resharper_loop_can_be_converted_to_query_highlighting = hint
resharper_member_can_be_made_static_local_highlighting = warning
resharper_member_can_be_private_global_highlighting = suggestion
resharper_move_local_function_after_jump_statement_highlighting = none
resharper_redundant_if_else_block_highlighting = none
resharper_suggest_var_or_type_deconstruction_declarations_highlighting = hint
resharper_suggest_var_or_type_simple_types_highlighting = none
resharper_trailing_comma_in_multiline_lists = true
resharper_use_collection_expression_highlighting = hint
resharper_use_implicitly_typed_variable_evident_highlighting = warning
# Private fields in camelCase
dotnet_naming_rule.fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.fields_should_be_camel_case.style = camel_case
dotnet_naming_rule.fields_should_be_camel_case.symbols = fields
dotnet_naming_style.camel_case.capitalization = camel_case
dotnet_naming_symbols.fields.applicable_accessibilities = *
dotnet_naming_symbols.fields.applicable_kinds = field
# Public fields in PascalCase
dotnet_naming_rule.public_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.public_fields_should_be_pascal_case.style = pascal_case
dotnet_naming_rule.public_fields_should_be_pascal_case.symbols = public_fields
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_symbols.public_fields.applicable_accessibilities = public
dotnet_naming_symbols.public_fields.applicable_kinds = field
[UnityCommandLineLauncher.sln.DotSettings]
ij_formatter_enabled = false