Skip to content

Commit bc2a6c2

Browse files
authored
update(src): Move to v1.6.0 (#90)
This PR is moving Swiftly to version 1.6.0. Hopefully everything will be right this time. Swiftly v1.6.0 will be under Pre-Release version until we see everything going well
2 parents 7eea08c + 4d30a68 commit bc2a6c2

File tree

528 files changed

+42824
-26538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

528 files changed

+42824
-26538
lines changed

.editorconfig

+75-59
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,75 @@
1-
[*]
2-
cpp_indent_braces=false
3-
cpp_indent_multi_line_relative_to=innermost_parenthesis
4-
cpp_indent_within_parentheses=indent
5-
cpp_indent_preserve_within_parentheses=false
6-
cpp_indent_case_labels=false
7-
cpp_indent_case_contents=true
8-
cpp_indent_case_contents_when_block=false
9-
cpp_indent_lambda_braces_when_parameter=true
10-
cpp_indent_goto_labels=one_left
11-
cpp_indent_preprocessor=leftmost_column
12-
cpp_indent_access_specifiers=false
13-
cpp_indent_namespace_contents=true
14-
cpp_indent_preserve_comments=false
15-
cpp_new_line_before_open_brace_namespace=ignore
16-
cpp_new_line_before_open_brace_type=ignore
17-
cpp_new_line_before_open_brace_function=ignore
18-
cpp_new_line_before_open_brace_block=ignore
19-
cpp_new_line_before_open_brace_lambda=ignore
20-
cpp_new_line_scope_braces_on_separate_lines=false
21-
cpp_new_line_close_brace_same_line_empty_type=false
22-
cpp_new_line_close_brace_same_line_empty_function=false
23-
cpp_new_line_before_catch=true
24-
cpp_new_line_before_else=true
25-
cpp_new_line_before_while_in_do_while=false
26-
cpp_space_before_function_open_parenthesis=remove
27-
cpp_space_within_parameter_list_parentheses=false
28-
cpp_space_between_empty_parameter_list_parentheses=false
29-
cpp_space_after_keywords_in_control_flow_statements=true
30-
cpp_space_within_control_flow_statement_parentheses=false
31-
cpp_space_before_lambda_open_parenthesis=false
32-
cpp_space_within_cast_parentheses=false
33-
cpp_space_after_cast_close_parenthesis=false
34-
cpp_space_within_expression_parentheses=false
35-
cpp_space_before_block_open_brace=true
36-
cpp_space_between_empty_braces=false
37-
cpp_space_before_initializer_list_open_brace=false
38-
cpp_space_within_initializer_list_braces=true
39-
cpp_space_preserve_in_initializer_list=true
40-
cpp_space_before_open_square_bracket=false
41-
cpp_space_within_square_brackets=false
42-
cpp_space_before_empty_square_brackets=false
43-
cpp_space_between_empty_square_brackets=false
44-
cpp_space_group_square_brackets=true
45-
cpp_space_within_lambda_brackets=false
46-
cpp_space_between_empty_lambda_brackets=false
47-
cpp_space_before_comma=false
48-
cpp_space_after_comma=true
49-
cpp_space_remove_around_member_operators=true
50-
cpp_space_before_inheritance_colon=true
51-
cpp_space_before_constructor_colon=true
52-
cpp_space_remove_before_semicolon=true
53-
cpp_space_after_semicolon=false
54-
cpp_space_remove_around_unary_operator=true
55-
cpp_space_around_binary_operator=insert
56-
cpp_space_around_assignment_operator=insert
57-
cpp_space_pointer_reference_alignment=left
58-
cpp_space_around_ternary_operator=insert
59-
cpp_wrap_preserve_blocks=one_liners
1+
# Visual Studio generated .editorconfig file with C++ settings.
2+
root = true
3+
4+
[*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}]
5+
6+
# Visual C++ Code Style settings
7+
8+
cpp_generate_documentation_comments = xml
9+
10+
# Visual C++ Formatting settings
11+
12+
cpp_indent_braces = false
13+
cpp_indent_multi_line_relative_to = innermost_parenthesis
14+
cpp_indent_within_parentheses = indent
15+
cpp_indent_preserve_within_parentheses = true
16+
cpp_indent_case_contents = true
17+
cpp_indent_case_labels = false
18+
cpp_indent_case_contents_when_block = false
19+
cpp_indent_lambda_braces_when_parameter = true
20+
cpp_indent_goto_labels = one_left
21+
cpp_indent_preprocessor = leftmost_column
22+
cpp_indent_access_specifiers = false
23+
cpp_indent_namespace_contents = true
24+
cpp_indent_preserve_comments = false
25+
cpp_new_line_before_open_brace_namespace = ignore
26+
cpp_new_line_before_open_brace_type = ignore
27+
cpp_new_line_before_open_brace_function = ignore
28+
cpp_new_line_before_open_brace_block = ignore
29+
cpp_new_line_before_open_brace_lambda = ignore
30+
cpp_new_line_scope_braces_on_separate_lines = false
31+
cpp_new_line_close_brace_same_line_empty_type = false
32+
cpp_new_line_close_brace_same_line_empty_function = false
33+
cpp_new_line_before_catch = true
34+
cpp_new_line_before_else = true
35+
cpp_new_line_before_while_in_do_while = false
36+
cpp_space_before_function_open_parenthesis = remove
37+
cpp_space_within_parameter_list_parentheses = false
38+
cpp_space_between_empty_parameter_list_parentheses = false
39+
cpp_space_after_keywords_in_control_flow_statements = true
40+
cpp_space_within_control_flow_statement_parentheses = false
41+
cpp_space_before_lambda_open_parenthesis = false
42+
cpp_space_within_cast_parentheses = false
43+
cpp_space_after_cast_close_parenthesis = false
44+
cpp_space_within_expression_parentheses = false
45+
cpp_space_before_block_open_brace = true
46+
cpp_space_between_empty_braces = false
47+
cpp_space_before_initializer_list_open_brace = false
48+
cpp_space_within_initializer_list_braces = true
49+
cpp_space_preserve_in_initializer_list = true
50+
cpp_space_before_open_square_bracket = false
51+
cpp_space_within_square_brackets = false
52+
cpp_space_before_empty_square_brackets = false
53+
cpp_space_between_empty_square_brackets = false
54+
cpp_space_group_square_brackets = true
55+
cpp_space_within_lambda_brackets = false
56+
cpp_space_between_empty_lambda_brackets = false
57+
cpp_space_before_comma = false
58+
cpp_space_after_comma = true
59+
cpp_space_remove_around_member_operators = true
60+
cpp_space_before_inheritance_colon = true
61+
cpp_space_before_constructor_colon = true
62+
cpp_space_remove_before_semicolon = true
63+
cpp_space_after_semicolon = true
64+
cpp_space_remove_around_unary_operator = true
65+
cpp_space_around_binary_operator = insert
66+
cpp_space_around_assignment_operator = insert
67+
cpp_space_pointer_reference_alignment = left
68+
cpp_space_around_ternary_operator = insert
69+
cpp_use_unreal_engine_macro_formatting = true
70+
cpp_wrap_preserve_blocks = one_liners
71+
72+
# Visual C++ Inlcude Cleanup settings
73+
74+
cpp_include_cleanup_add_missing_error_tag_type = suggestion
75+
cpp_include_cleanup_remove_unused_error_tag_type = dimmed

0 commit comments

Comments
 (0)