-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy patheditorconfig
More file actions
75 lines (73 loc) · 3.9 KB
/
editorconfig
File metadata and controls
75 lines (73 loc) · 3.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
root = true
[*.cs]
indent_style = space
indent_size = 2
max_line_length = 120
insert_final_newline = true
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
csharp_style_var_elsewhere = true:suggestion
csharp_style_expression_bodied_methods = true:suggestion
csharp_style_namespace_declarations = file_scoped:suggestion
csharp_style_prefer_braces = true:suggestion
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_prefer_switch_expression = true:suggestion
csharp_style_prefer_null_check_over_type_check = true:suggestion
dotnet_style_qualification_for_field = false:suggestion
dotnet_style_qualification_for_property = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_event = false:suggestion
dotnet_style_require_accessibility_modifiers = always:suggestion
dotnet_style_readonly_field = true:suggestion
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_prefer_inferred_tuple_names = true:suggestion
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
dotnet_style_prefer_auto_properties = true:suggestion
dotnet_style_prefer_compound_assignment = true:suggestion
dotnet_style_prefer_collection_initializer = true:suggestion
dotnet_style_prefer_object_initializer = true:suggestion
dotnet_style_prefer_null_conditional_operator = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality = true:suggestion
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_switch_expression = true:suggestion
dotnet_style_prefer_utf8_string_literals = true:suggestion
dotnet_style_prefer_index_operator = true:suggestion
dotnet_style_prefer_range_operator = true:suggestion
dotnet_style_prefer_required_members = true:suggestion
[*.sql]
align_clause_bodies = true
align_column_definition_fields = true
align_set_clause_item = true
allow_external_language_paths = true
allow_external_library_paths = true
as_keyword_on_own_line = true
include_semicolons = false
indent_set_clause = false
keyword_casing = uppercase|lowercase|pascalcase
indentation_size = 4
indent_view_body = false
multiline_insert_sources_list = true
multiline_insert_targets_list = true
multiline_select_elements_list = true
multiline_set_clause_items = true
multiline_view_columns_list = true
multiline_where_predicates_list = true
new_line_before_close_parenthesis_in_multiline_list = true
new_line_before_from_clause = true
new_line_before_group_by_clause = true
new_line_before_having_clause = true
new_line_before_join_clause = true
new_line_before_offset_clause = true
new_line_before_open_parenthesis_in_multiline_list = false
new_line_before_order_by_clause = true
new_line_before_output_clause = true
new_line_before_where_clause = true
new_line_before_window_clause = true
newline_formatted_check_constraint = false
new_line_formatted_index_definition = false
num_newlines_after_statement = 1
space_between_data_type_and_parameters = true
space_between_parameters_in_data_type = true
sql_engine_type = all|sqlazure|standalone
sql_version = sql80|sql90|sql100|sql110|sql120|sql130|sql140|sql150|sql160|sql170