diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config')
1429 files changed, 16029 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1225.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1225.cfg new file mode 100644 index 00000000..cbc83adb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1225.cfg @@ -0,0 +1,3 @@ +align_func_proto_span = 2 +align_single_line_func = True +nl_func_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-no-split.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-no-split.cfg new file mode 100644 index 00000000..c554aba1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-no-split.cfg @@ -0,0 +1,11 @@ +sp_sparen_brace = add +sp_before_sparen = force +sp_inside_braces = force +sp_fparen_brace = add +sp_else_brace = force +sp_brace_else = force +indent_columns = 3 +nl_func_leave_one_liners = true +nl_start_of_file = remove +mod_full_brace_if = add +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-split.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-split.cfg new file mode 100644 index 00000000..e666ea24 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/1liner-split.cfg @@ -0,0 +1,9 @@ +sp_before_sparen = force +indent_columns = 3 +nl_start_of_file = remove +nl_assign_brace = add +nl_enum_brace = add +nl_if_brace = add +nl_else_brace = add +nl_fdef_brace = add +nl_after_brace_open = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2205.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2205.cfg new file mode 100644 index 00000000..cc70ad70 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2205.cfg @@ -0,0 +1,3 @@ +sp_after_byref = remove +indent_columns = 4 +sp_addr = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2278.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2278.cfg new file mode 100644 index 00000000..80ba4f6f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2278.cfg @@ -0,0 +1,15 @@ +# Try to limit code width to N columns.</html>" +code_width = 100 + +# Whether to align variable definitions in prototypes and functions. +align_func_params = true + +# How to consider (or treat) the '*' in the alignment of variable definitions. +# 0: Part of the type 'void * foo;' (default) +# 1: Part of the variable 'void *foo;' +# 2: Dangling 'void *foo;' +# Dangling: the '*' will not be taken into account when aligning. +align_var_def_star_style = 2 + + +align_func_params_span = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2279.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2279.cfg new file mode 100644 index 00000000..1f646668 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2279.cfg @@ -0,0 +1,4 @@ +sp_before_ptr_star = force +align_var_def_span = 1 +align_var_def_star_style = 1 +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-a.cfg new file mode 100644 index 00000000..aad62f44 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-a.cfg @@ -0,0 +1,4 @@ +sp_sparen_brace = add +nl_multi_line_sparen_open = force +nl_multi_line_sparen_close = force +nl_before_if_closing_paren = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-b.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-b.cfg new file mode 100644 index 00000000..3354c471 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2360-b.cfg @@ -0,0 +1,4 @@ +sp_sparen_brace = add +nl_multi_line_sparen_open = false +nl_multi_line_sparen_close = remove +nl_before_if_closing_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2411.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2411.cfg new file mode 100644 index 00000000..a4770ec9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2411.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 1 +cmt_convert_tab_to_spaces = false +cmt_indent_multi = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2640.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2640.cfg new file mode 100644 index 00000000..a4dd2354 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_2640.cfg @@ -0,0 +1 @@ +sp_after_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3169.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3169.cfg new file mode 100644 index 00000000..728cfaf6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3169.cfg @@ -0,0 +1,5 @@ +sp_pp_concat = ignore +indent_columns = 2 +pp_multiline_define_body_indent = 2 +align_var_def_span = 1 +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3233.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3233.cfg new file mode 100644 index 00000000..71ee918b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3233.cfg @@ -0,0 +1,2 @@ +sp_arith = force +sp_after_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3269.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3269.cfg new file mode 100644 index 00000000..3a4bb6bf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3269.cfg @@ -0,0 +1 @@ +sp_inside_sparen = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3272.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3272.cfg new file mode 100644 index 00000000..2cda9402 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3272.cfg @@ -0,0 +1 @@ +sp_cmt_cpp_start = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3274.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3274.cfg new file mode 100644 index 00000000..63aa1d0c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3274.cfg @@ -0,0 +1,2 @@ +nl_func_decl_args_multi_line = true +nl_func_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3327.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3327.cfg new file mode 100644 index 00000000..1470c6b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3327.cfg @@ -0,0 +1,3 @@ +pp_define_at_level = true +pp_if_indent_code = true +pp_indent_at_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3350.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3350.cfg new file mode 100644 index 00000000..d53c8094 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3350.cfg @@ -0,0 +1,2 @@ +indent_comment = false +cmt_indent_multi = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3351.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3351.cfg new file mode 100644 index 00000000..67df4d20 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3351.cfg @@ -0,0 +1,3 @@ +mod_full_brace_while = force +nl_while_brace = force +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3353.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3353.cfg new file mode 100644 index 00000000..56810833 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3353.cfg @@ -0,0 +1,3 @@ +sp_func_call_paren = remove +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3356.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3356.cfg new file mode 100644 index 00000000..2791f6c6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3356.cfg @@ -0,0 +1 @@ +code_width = 80 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3370.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3370.cfg new file mode 100644 index 00000000..05f38590 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3370.cfg @@ -0,0 +1,3 @@ +indent_col1_comment = true +pp_if_indent_code = true +pp_indent_at_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3377.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3377.cfg new file mode 100644 index 00000000..ca7a07db --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3377.cfg @@ -0,0 +1,2 @@ +sp_inside_sparen = add +sp_inside_for = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3402.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3402.cfg new file mode 100644 index 00000000..5252c78d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3402.cfg @@ -0,0 +1,3 @@ +sp_after_ptr_star = add +sp_ptr_star_func_var = force +sp_ptr_star_func_type = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3431.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3431.cfg new file mode 100644 index 00000000..45dbff25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3431.cfg @@ -0,0 +1,4 @@ +indent_paren_close = 1 +pp_if_indent_code = true +pp_indent_at_level = true +pp_indent_at_level0 = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3454.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3454.cfg new file mode 100644 index 00000000..9674606a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3454.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_comma_brace = -1 +indent_comma_paren = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3457.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3457.cfg new file mode 100644 index 00000000..78984566 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3457.cfg @@ -0,0 +1 @@ +sp_type_colon = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3472.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3472.cfg new file mode 100644 index 00000000..9e1acf21 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3472.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_bool_paren = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3476.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3476.cfg new file mode 100644 index 00000000..3fef0a75 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3476.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_ignore_arith = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3480.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3480.cfg new file mode 100644 index 00000000..d86880ad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3480.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_shift = -1 +align_left_shift = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3493.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3493.cfg new file mode 100644 index 00000000..cfc36660 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3493.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_ignore_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3506.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3506.cfg new file mode 100644 index 00000000..6a9f2d25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3506.cfg @@ -0,0 +1 @@ +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3516.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3516.cfg new file mode 100644 index 00000000..ba1f9656 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3516.cfg @@ -0,0 +1,5 @@ +# The number of newlines after a block of variable definitions not at the top +# of a function body. +# +# 0: No change (default). +nl_var_def_blk_end = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3517.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3517.cfg new file mode 100644 index 00000000..ed31649e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3517.cfg @@ -0,0 +1 @@ +nl_var_def_blk_start = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3518.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3518.cfg new file mode 100644 index 00000000..a7caf986 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3518.cfg @@ -0,0 +1 @@ +nl_var_def_blk_end_func_top = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3556.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3556.cfg new file mode 100644 index 00000000..9840c82d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3556.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_ignore_assign = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3561.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3561.cfg new file mode 100644 index 00000000..56965ae8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3561.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_ignore_first_continue = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3565.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3565.cfg new file mode 100644 index 00000000..c1a793e8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3565.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +pp_ignore_define_body = true +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-a.cfg new file mode 100644 index 00000000..1659f46a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-a.cfg @@ -0,0 +1,4 @@ +indent_paren_after_func_def = true +indent_paren_after_func_decl = true +indent_paren_after_func_call = true +use_indent_continue_only_once = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-b.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-b.cfg new file mode 100644 index 00000000..454bc264 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3567-b.cfg @@ -0,0 +1,4 @@ +indent_paren_after_func_def = true +indent_paren_after_func_decl = true +indent_paren_after_func_call = true +use_indent_continue_only_once = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3580.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3580.cfg new file mode 100644 index 00000000..fc53aac2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3580.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_ignore_case_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3582.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3582.cfg new file mode 100644 index 00000000..d6b1a287 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3582.cfg @@ -0,0 +1,5 @@ +indent_with_tabs = 0 +indent_columns = 4 +pp_indent_at_level = true +pp_if_indent_code = true +pp_indent_brace = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3601.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3601.cfg new file mode 100644 index 00000000..3537fd11 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3601.cfg @@ -0,0 +1,2 @@ +#Config file +sp_after_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3662.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3662.cfg new file mode 100644 index 00000000..6500adbb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3662.cfg @@ -0,0 +1,4 @@ +sp_before_ptr_star = remove +sp_before_byref = remove +sp_after_ptr_star = add +sp_after_byref = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-1.cfg new file mode 100644 index 00000000..2fab2c13 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-1.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = force +mod_infinite_loop = 1 +mod_full_brace_for = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-2.cfg new file mode 100644 index 00000000..10462086 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-2.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +mod_infinite_loop = 2 +mod_full_brace_while = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-3.cfg new file mode 100644 index 00000000..d803c2fd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-3.cfg @@ -0,0 +1,2 @@ +mod_infinite_loop = 3 +mod_full_brace_do = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-4.cfg new file mode 100644 index 00000000..536b9756 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-4.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = force +mod_infinite_loop = 4 +mod_full_brace_while = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-5.cfg new file mode 100644 index 00000000..e25c6f03 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3716-5.cfg @@ -0,0 +1,2 @@ +mod_infinite_loop = 5 +mod_full_brace_do = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3852.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3852.cfg new file mode 100644 index 00000000..087272b9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3852.cfg @@ -0,0 +1 @@ +sp_func_call_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3873.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3873.cfg new file mode 100644 index 00000000..8179ffa5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3873.cfg @@ -0,0 +1,5 @@ +sp_before_sparen = force +indent_cmt_with_tabs = true +nl_while_brace = add +align_right_cmt_span = 3 +align_right_cmt_at_col = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3989.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3989.cfg new file mode 100644 index 00000000..459005de --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/Issue_3989.cfg @@ -0,0 +1,2 @@ +sp_before_unnamed_ptr_star = remove +sp_before_ptr_star_func = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/add_long_closebrace_comment_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/add_long_closebrace_comment_1.cfg new file mode 100644 index 00000000..b8190eb1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/add_long_closebrace_comment_1.cfg @@ -0,0 +1,2 @@ +mod_add_long_function_closebrace_comment = 8 +mod_add_long_switch_closebrace_comment = 8
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-2.cfg new file mode 100644 index 00000000..ea78a8d4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-2.cfg @@ -0,0 +1,8 @@ +indent_columns = 3 +nl_struct_brace = add +align_func_params = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_var_def_colon = true +align_var_struct_span = 3 +align_var_struct_thresh = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-3.cfg new file mode 100644 index 00000000..1b46c840 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-3.cfg @@ -0,0 +1,8 @@ +indent_columns = 3 +nl_struct_brace = add +align_func_params = true +align_var_def_span = 1 +align_var_def_star_style = 2 +align_var_def_colon = true +align_var_struct_span = 1 +align_var_struct_thresh = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-4.cfg new file mode 100644 index 00000000..1d35c349 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align-4.cfg @@ -0,0 +1 @@ +align_assign_span=2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_attr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_attr.cfg new file mode 100644 index 00000000..3249cd7b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_attr.cfg @@ -0,0 +1,3 @@ +align_var_def_span = 2 +align_var_def_attribute = true +set ATTRIBUTE _PREPROCESSOR_SOMETHING
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-1.cfg new file mode 100644 index 00000000..83874b8b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-1.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 0 +align_func_proto_span = 1 +align_func_proto_star_style = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-2.cfg new file mode 100644 index 00000000..3afaa70a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-2.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 0 +align_func_proto_span = 1 +align_func_proto_star_style = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-3.cfg new file mode 100644 index 00000000..1b1e7541 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-3.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 0 +align_func_proto_span = 1 +align_func_proto_star_style = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-4.cfg new file mode 100644 index 00000000..391526e0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-4.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 1 +align_func_proto_span = 1 +align_func_proto_star_style = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-5.cfg new file mode 100644 index 00000000..7fd9cd6c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-5.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 1 +align_func_proto_span = 1 +align_func_proto_star_style = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-6.cfg new file mode 100644 index 00000000..00d18433 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-6.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 1 +align_func_proto_span = 1 +align_func_proto_star_style = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-7.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-7.cfg new file mode 100644 index 00000000..64af8258 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-7.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 2 +align_func_proto_span = 1 +align_func_proto_star_style = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-8.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-8.cfg new file mode 100644 index 00000000..4531b895 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-8.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 2 +align_func_proto_span = 1 +align_func_proto_star_style = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-9.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-9.cfg new file mode 100644 index 00000000..2b2b6b02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_func_proto_star_amp-9.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 2 +align_func_proto_span = 1 +align_func_proto_star_style = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_keep_extra.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_keep_extra.cfg new file mode 100644 index 00000000..fcaab9f2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_keep_extra.cfg @@ -0,0 +1,4 @@ +sp_after_type = ignore +align_keep_extra_space = true +align_var_def_span = 1 +align_assign_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_multi.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_multi.cfg new file mode 100644 index 00000000..33b236d5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_multi.cfg @@ -0,0 +1,2 @@ +align_assign_span = 3 +align_assign_on_multi_var_defs = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-2.cfg new file mode 100644 index 00000000..6401180b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-2.cfg @@ -0,0 +1 @@ +align_nl_cont = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-3.cfg new file mode 100644 index 00000000..31ec6899 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont-3.cfg @@ -0,0 +1 @@ +align_nl_cont = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont_spaces-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont_spaces-5.cfg new file mode 100644 index 00000000..0c46e8b6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_nl_cont_spaces-5.cfg @@ -0,0 +1,2 @@ +align_nl_cont = 1 +align_nl_cont_spaces = 5 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_right_cmt_gap-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_right_cmt_gap-1.cfg new file mode 100644 index 00000000..46aaf838 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_right_cmt_gap-1.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +indent_with_tabs = 0 +align_right_cmt_span = 8
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_418.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_418.cfg new file mode 100644 index 00000000..cdf7f052 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_418.cfg @@ -0,0 +1,2 @@ +align_same_func_call_params = true +align_same_func_call_params_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_419.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_419.cfg new file mode 100644 index 00000000..a11c2102 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_span_419.cfg @@ -0,0 +1,2 @@ +align_same_func_call_params = true +align_same_func_call_params_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_416.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_416.cfg new file mode 100644 index 00000000..6280b856 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_416.cfg @@ -0,0 +1,4 @@ +sp_after_comma = force +align_same_func_call_params = true +align_same_func_call_params_span = 3 +align_same_func_call_params_thresh = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_417.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_417.cfg new file mode 100644 index 00000000..9d09abb2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_sf_call_thresh_417.cfg @@ -0,0 +1,2 @@ +align_same_func_call_params = true +align_same_func_call_params_thresh = 20
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_stack.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_stack.cfg new file mode 100644 index 00000000..d53a6bb3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_stack.cfg @@ -0,0 +1,3 @@ +align_var_def_span = 1 +align_var_def_star_style = 2 # SS_DANGLE +align_on_tabstop = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_trailing_do_cmt.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_trailing_do_cmt.cfg new file mode 100644 index 00000000..bebd4c83 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_trailing_do_cmt.cfg @@ -0,0 +1,6 @@ +align_right_cmt_span = 10 +nl_brace_while = remove +nl_do_brace = remove +sp_do_brace_open = add +sp_brace_close_while = add +sp_while_paren_open = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-1.cfg new file mode 100644 index 00000000..ea45e4d8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-1.cfg @@ -0,0 +1,3 @@ +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_func = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-2.cfg new file mode 100644 index 00000000..252f07ea --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_func-2.cfg @@ -0,0 +1,5 @@ +sp_after_ptr_star = remove +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_func = 2 +align_typedef_star_style = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_gap-3_span-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_gap-3_span-5.cfg new file mode 100644 index 00000000..338f078f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/align_typedef_gap-3_span-5.cfg @@ -0,0 +1,2 @@ +align_typedef_gap = 3 +align_typedef_span = 5
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_047.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_047.cfg new file mode 100644 index 00000000..2af44bb3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_047.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +align_right_cmt_span = 3 +sp_endif_cmt = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_048.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_048.cfg new file mode 100644 index 00000000..2d8e61ef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_048.cfg @@ -0,0 +1,18 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_if_brace = add +nl_else_brace = add +nl_while_brace = add +nl_do_brace = add +nl_brace_while = remove +nl_fdef_brace = add +sp_brace_close_while = force +align_assign_span = 1 +cmt_star_cont = true +mod_full_brace_do = add +mod_full_brace_if = add +mod_full_brace_while = add +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 40 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_049.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_049.cfg new file mode 100644 index 00000000..93e4499c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_049.cfg @@ -0,0 +1,6 @@ +sp_assign = force +sp_after_comma = force +indent_columns = 3 +indent_with_tabs = 0 +pp_multiline_define_body_indent = 3 +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_050.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_050.cfg new file mode 100644 index 00000000..0f0e30ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_050.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_if_brace = add +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_051.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_051.cfg new file mode 100644 index 00000000..786fb030 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_051.cfg @@ -0,0 +1,5 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_fcall_brace = add +nl_if_brace = add +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_052.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_052.cfg new file mode 100644 index 00000000..ba150be7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_052.cfg @@ -0,0 +1,8 @@ +sp_inside_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_if_brace = add +nl_for_brace = add +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_053.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_053.cfg new file mode 100644 index 00000000..a28d7dc2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_053.cfg @@ -0,0 +1,5 @@ +sp_defined_paren = force +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_054.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_054.cfg new file mode 100644 index 00000000..56661763 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_054.cfg @@ -0,0 +1,14 @@ +sp_before_sparen = force +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +indent_with_tabs = 0 +nl_if_brace = add +nl_else_brace = add +nl_while_brace = add +nl_fdef_brace = add +align_var_def_span = 2 +align_assign_span = 1 +mod_full_brace_if = add +mod_full_brace_while = add +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_055.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_055.cfg new file mode 100644 index 00000000..f87a7f09 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_055.cfg @@ -0,0 +1,9 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_var_def_blk_end_func_top = 1 +nl_while_brace = add +nl_do_brace = add +nl_brace_while = remove +sp_brace_close_while = force +mod_full_brace_do = add +mod_full_brace_while = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_056.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_056.cfg new file mode 100644 index 00000000..efd9e116 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_056.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +pp_multiline_define_body_indent = 3 +align_nl_cont = 1 +pp_space_after = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_057.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_057.cfg new file mode 100644 index 00000000..fbf24d72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_057.cfg @@ -0,0 +1,8 @@ +sp_assign = force +sp_before_sparen = force +indent_columns = 3 +indent_with_tabs = 0 +nl_while_brace = add +nl_fdef_brace = add +nl_after_brace_open = true +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_058.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_058.cfg new file mode 100644 index 00000000..29ab494b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_058.cfg @@ -0,0 +1,10 @@ +sp_inside_paren = remove +sp_before_sparen = force +sp_return_paren = remove +indent_columns = 3 +indent_switch_body = 3 +pp_multiline_define_body_indent = 3 +nl_switch_brace = add +eat_blanks_before_close_brace = true +align_nl_cont = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_061.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_061.cfg new file mode 100644 index 00000000..89f76fae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_061.cfg @@ -0,0 +1,12 @@ +sp_arith = force +sp_assign = force +indent_columns = 3 +indent_with_tabs = 0 +indent_label = 2 +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_after_return = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_063.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_063.cfg new file mode 100644 index 00000000..91f0e92f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_063.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_var_def_blk_end_func_top = 1 +align_var_def_span = 2 +align_pp_define_gap = 4 +align_pp_define_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_064.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_064.cfg new file mode 100644 index 00000000..f56efbdf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_064.cfg @@ -0,0 +1,3 @@ +sp_after_comma = force +indent_columns = 3 +align_var_def_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_065.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_065.cfg new file mode 100644 index 00000000..21d55b16 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_065.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +eat_blanks_before_close_brace = true +align_var_def_span = 2 +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_069.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_069.cfg new file mode 100644 index 00000000..d42173e1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_069.cfg @@ -0,0 +1,9 @@ +sp_inside_fparen = remove +indent_columns = 3 +nl_if_brace = add +nl_else_brace = add +nl_after_brace_open = true +nl_after_vbrace_open = true +align_pp_define_gap = 4 +align_pp_define_span = 3 +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_070.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_070.cfg new file mode 100644 index 00000000..f304ca8a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_070.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +align_assign_span = 1 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_071.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_071.cfg new file mode 100644 index 00000000..869f2a94 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_071.cfg @@ -0,0 +1,2 @@ +align_var_def_span = 2 +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_072.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_072.cfg new file mode 100644 index 00000000..5de1221d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_072.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +pp_multiline_define_body_indent = 3 +eat_blanks_before_close_brace = true +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_073.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_073.cfg new file mode 100644 index 00000000..fe9d6c05 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_073.cfg @@ -0,0 +1,4 @@ +sp_after_cast = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_074.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_074.cfg new file mode 100644 index 00000000..31a1de44 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_074.cfg @@ -0,0 +1,4 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +indent_columns = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_075.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_075.cfg new file mode 100644 index 00000000..9eca8a9b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_075.cfg @@ -0,0 +1,3 @@ +sp_inside_fparen = remove +align_func_params = true +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_076.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_076.cfg new file mode 100644 index 00000000..fb27ba74 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_076.cfg @@ -0,0 +1,2 @@ +sp_after_ptr_star = remove +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_077.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_077.cfg new file mode 100644 index 00000000..4e9760f7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_077.cfg @@ -0,0 +1,8 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_comma = force +sp_after_cast = remove +indent_columns = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3 +mod_add_long_function_closebrace_comment = 40 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_078.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_078.cfg new file mode 100644 index 00000000..54fcc628 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_078.cfg @@ -0,0 +1,3 @@ +sp_after_comma = force +indent_columns = 3 +nl_after_brace_open = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_079.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_079.cfg new file mode 100644 index 00000000..77a732e5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_079.cfg @@ -0,0 +1,7 @@ +sp_after_comma = force +sp_inside_braces = force +indent_columns = 3 +nl_assign_brace = add +align_number_right = true +align_assign_span = 1 +align_struct_init_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_080.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_080.cfg new file mode 100644 index 00000000..45e16a8d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_080.cfg @@ -0,0 +1,8 @@ +sp_inside_paren = remove +sp_before_sparen = force +indent_columns = 3 +nl_if_brace = add +nl_else_brace = add +nl_fdef_brace = add +mod_full_brace_if = add +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_081.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_081.cfg new file mode 100644 index 00000000..4d9db731 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_081.cfg @@ -0,0 +1,4 @@ +sp_before_ellipsis = remove +indent_columns = 3 +pp_multiline_define_body_indent = 3 +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_083.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_083.cfg new file mode 100644 index 00000000..2bdf2afa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_083.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_084.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_084.cfg new file mode 100644 index 00000000..c770772c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_084.cfg @@ -0,0 +1,13 @@ +sp_arith = force +sp_assign = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_comma = force +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_struct_brace = add +align_var_def_star_style = 1 +align_var_struct_span = 3 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_085.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_085.cfg new file mode 100644 index 00000000..ca86d2f4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_085.cfg @@ -0,0 +1,4 @@ +sp_paren_paren = remove +sp_inside_fparen = remove +sp_inside_rparen = remove +indent_columns = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_086.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_086.cfg new file mode 100644 index 00000000..7ffcd831 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_086.cfg @@ -0,0 +1,23 @@ +sp_compare = force +sp_inside_paren = remove +sp_before_sparen = force +sp_inside_sparen = remove +sp_before_semi_for_empty = force +sp_between_semi_for_empty = force +sp_after_semi_for_empty = force +indent_columns = 3 +indent_with_tabs = 0 +nl_enum_brace = add +nl_struct_brace = add +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_before_case = true +nl_after_brace_open = true +align_var_def_star_style = 1 +align_var_struct_span = 3 +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 40 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_087.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_087.cfg new file mode 100644 index 00000000..5b5592a7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_087.cfg @@ -0,0 +1,37 @@ +sp_arith = force +sp_assign = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_before_sparen = force +sp_after_comma = force +sp_inside_braces = force +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +indent_with_tabs = 0 +indent_label = 2 +nl_assign_brace = add +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_switch_brace = add +nl_before_case = true +eat_blanks_after_open_brace = true +nl_after_return = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_struct_init_span = 3 +cmt_star_cont = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add +mod_add_long_function_closebrace_comment = 40 +mod_add_long_switch_closebrace_comment = 40 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_088.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_088.cfg new file mode 100644 index 00000000..a8abed32 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_088.cfg @@ -0,0 +1,4 @@ +sp_before_sparen = force +sp_while_paren_open = force +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_089.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_089.cfg new file mode 100644 index 00000000..d3c152df --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_089.cfg @@ -0,0 +1,3 @@ +sp_compare = force +sp_before_semi_for_empty = force +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_090.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_090.cfg new file mode 100644 index 00000000..dabddf2a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_090.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +pp_multiline_define_body_indent = 3 +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_091.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_091.cfg new file mode 100644 index 00000000..aec90af1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_091.cfg @@ -0,0 +1,5 @@ +sp_after_comma = force +sp_func_def_paren = remove +indent_columns = 3 +nl_if_brace = add +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_092.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_092.cfg new file mode 100644 index 00000000..bb993d75 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_092.cfg @@ -0,0 +1,10 @@ +sp_after_comma = force +indent_columns = 3 +indent_with_tabs = 0 +nl_if_brace = add +nl_do_brace = add +nl_fdef_brace = add +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +cmt_star_cont = true +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_093.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_093.cfg new file mode 100644 index 00000000..4e50b52b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_093.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +align_asm_colon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_094.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_094.cfg new file mode 100644 index 00000000..5ff0a09b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_094.cfg @@ -0,0 +1,6 @@ +sp_inside_paren = remove +sp_after_comma = force +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +align_assign_span = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_095.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_095.cfg new file mode 100644 index 00000000..edb10a4f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ben_095.cfg @@ -0,0 +1,2 @@ +sp_before_sparen = force +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol-break.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol-break.cfg new file mode 100644 index 00000000..d2abdeb6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol-break.cfg @@ -0,0 +1,4 @@ +# moves boolean ops to the end of line +indent_columns = 3 +pos_bool = trail_break +pos_comma = trail_break
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol.cfg new file mode 100644 index 00000000..f7fe1330 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-eol.cfg @@ -0,0 +1,4 @@ +# moves boolean ops to the end of line +indent_columns = 3 +pos_bool = trail +pos_comma = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-break.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-break.cfg new file mode 100644 index 00000000..e07ab7e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-break.cfg @@ -0,0 +1,5 @@ +# moves boolean ops to the end of line +sp_after_comma = force +indent_columns = 3 +pos_bool = lead_break +pos_comma = lead_break
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-force.cfg new file mode 100644 index 00000000..36f81a26 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol-force.cfg @@ -0,0 +1,5 @@ +# moves boolean ops to the end of line +sp_after_comma = force +indent_columns = 3 +pos_bool = lead_force +pos_comma = lead_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol.cfg new file mode 100644 index 00000000..9dbcbaf2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bool-pos-sol.cfg @@ -0,0 +1,5 @@ +# moves boolean ops to the end of line +sp_after_comma = force +indent_columns = 3 +pos_bool = lead +pos_comma = lead diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.cfg new file mode 100644 index 00000000..78417cf8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.cfg @@ -0,0 +1,16 @@ +# Banner style +sp_sparen_brace = add +output_tab_size = 2 +sp_fparen_brace = add +sp_else_brace = force +sp_do_brace_open = force +indent_columns = 2 +indent_braces = true +indent_braces_no_func = true +nl_if_brace = remove +nl_else_brace = remove +nl_for_brace = remove +nl_while_brace = remove +nl_do_brace = remove +nl_brace_while = add +nl_fdef_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.rerun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.rerun.cfg new file mode 100644 index 00000000..df289545 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-banner.rerun.cfg @@ -0,0 +1,3 @@ +include "brace-banner.cfg" + +input_tab_size = output_tab_size diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-gnu.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-gnu.cfg new file mode 100644 index 00000000..c5bd1371 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-gnu.cfg @@ -0,0 +1,8 @@ +# GNU style +indent_columns = 2 +indent_with_tabs = 0 +indent_brace = 2 +nl_fcall_brace = add +nl_if_brace = add +nl_brace_while = add +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-br.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-br.cfg new file mode 100644 index 00000000..0ea2f9bc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-br.cfg @@ -0,0 +1,6 @@ +# K&R style +sp_sparen_brace = add +sp_else_brace = force +nl_if_brace = remove +nl_after_brace_open = true +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-nobr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-nobr.cfg new file mode 100644 index 00000000..970b1ab0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr-nobr.cfg @@ -0,0 +1,11 @@ +# K&R style +sp_after_sparen = force +sp_brace_else = force +sp_else_brace = force +nl_if_brace = remove +nl_brace_else = remove +nl_else_brace = remove +nl_while_brace = remove +nl_fdef_brace = add +nl_remove_extra_newlines = 2 +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr.cfg new file mode 100644 index 00000000..b655443c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-kr.cfg @@ -0,0 +1,13 @@ +# K&R style +sp_sparen_brace = add +sp_else_brace = force +sp_brace_else = force +sp_do_brace_open = force +nl_fcall_brace = add +nl_if_brace = remove +nl_brace_else = remove +nl_else_brace = remove +nl_for_brace = remove +nl_while_brace = remove +nl_do_brace = remove +nl_fdef_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-2.cfg new file mode 100644 index 00000000..9aa693fc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-2.cfg @@ -0,0 +1,6 @@ +# Removes all unecessary braces unless the body spans more than 2 lines +mod_full_brace_do = remove +mod_full_brace_for = remove +mod_full_brace_if = remove +mod_full_brace_nl = 2 +mod_full_brace_while = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-all.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-all.cfg new file mode 100644 index 00000000..ca279abd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-remove-all.cfg @@ -0,0 +1,6 @@ +# Removes all unecessary braces +nl_else_if = remove +mod_full_brace_do = remove +mod_full_brace_for = remove +mod_full_brace_if = remove +mod_full_brace_while = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws.cfg new file mode 100644 index 00000000..76d8908a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws.cfg @@ -0,0 +1,6 @@ +# Whitesmith style +indent_braces = true +nl_fcall_brace = add +nl_if_brace = add +nl_brace_while = add +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws2.cfg new file mode 100644 index 00000000..55eb6ece --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/brace-ws2.cfg @@ -0,0 +1,7 @@ +# Whitesmith style +indent_braces = true +indent_braces_no_func = true +nl_fcall_brace = add +nl_if_brace = add +nl_brace_while = add +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1702.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1702.cfg new file mode 100644 index 00000000..1c415eec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1702.cfg @@ -0,0 +1,6 @@ +nl_after_struct = 2 + +align_var_def_inline = true +align_var_def_span = 1 +align_var_def_star_style = 2 +align_var_struct_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1718.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1718.cfg new file mode 100644 index 00000000..e55de095 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_1718.cfg @@ -0,0 +1 @@ +indent_switch_pp = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_2331.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_2331.cfg new file mode 100644 index 00000000..4a4af2f3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_2331.cfg @@ -0,0 +1,2 @@ +sp_before_square = remove +sp_before_square_asm_block = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_489.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_489.cfg new file mode 100644 index 00000000..61d4693c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_489.cfg @@ -0,0 +1,3 @@ +newlines = crlf +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_i_771.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_i_771.cfg new file mode 100644 index 00000000..69b6e1a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/bug_i_771.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +align_var_def_star_style = 1 +align_var_struct_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-1.cfg new file mode 100644 index 00000000..7c65a819 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-1.cfg @@ -0,0 +1,3 @@ +output_tab_size = 3 +indent_columns = 3 +nl_before_case = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-2.cfg new file mode 100644 index 00000000..07c0566d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-2.cfg @@ -0,0 +1,5 @@ +output_tab_size = 3 +indent_columns = 3 +indent_switch_case = 3 +nl_before_case = true +mod_move_case_break = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-3.cfg new file mode 100644 index 00000000..74f16293 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/case-3.cfg @@ -0,0 +1,5 @@ +output_tab_size = 3 +indent_columns = 3 +indent_switch_case = 3 +indent_case_brace = -3 +nl_before_case = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-a.cfg new file mode 100644 index 00000000..488198a9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-a.cfg @@ -0,0 +1,8 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_comma = force +sp_after_cast = remove +sp_inside_paren_cast = force +indent_columns = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-r.cfg new file mode 100644 index 00000000..1d0138a2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-sp-r.cfg @@ -0,0 +1,7 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_comma = force +sp_after_cast = remove +indent_columns = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-type.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-type.cfg new file mode 100644 index 00000000..5900ffd5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cast-type.cfg @@ -0,0 +1,9 @@ +sp_before_ptr_star = force +sp_after_comma = force +sp_after_cast = remove +indent_columns = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3 +type UINT +type Uint +type uint32_t
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cgal.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cgal.cfg new file mode 100644 index 00000000..a4ec1fa0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cgal.cfg @@ -0,0 +1,7 @@ +sp_inside_sparen = force +sp_inside_sparen_close = remove +sp_inside_sparen_open = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_if_brace = add +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/clang-has_include.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/clang-has_include.cfg new file mode 100644 index 00000000..db006d08 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/clang-has_include.cfg @@ -0,0 +1,3 @@ +sp_bool = force +sp_func_call_paren = remove +pp_space_after = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_indent_multi-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_indent_multi-f.cfg new file mode 100644 index 00000000..1bd265a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_indent_multi-f.cfg @@ -0,0 +1 @@ +cmt_indent_multi = false
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_multi_check_last-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_multi_check_last-f.cfg new file mode 100644 index 00000000..7fdebde0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_multi_check_last-f.cfg @@ -0,0 +1 @@ +cmt_multi_check_last = false
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_nl_end.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_nl_end.cfg new file mode 100644 index 00000000..1c0b396a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_nl_end.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +nl_before_if = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_reflow.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_reflow.cfg new file mode 100644 index 00000000..9b280d18 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cmt_reflow.cfg @@ -0,0 +1,6 @@ +cmt_align_doxygen_javadoc_tags = true +cmt_indent_multi = true +cmt_reflow_indent_to_paragraph_start = true +cmt_reflow_mode = 2 +cmt_sp_after_star_cont = 2 +cmt_width = 70 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/code_width-80.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/code_width-80.cfg new file mode 100644 index 00000000..4bdb0ce7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/code_width-80.cfg @@ -0,0 +1 @@ +code_width = 80
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/comment_conversion.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/comment_conversion.cfg new file mode 100644 index 00000000..96b4bf4e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/comment_conversion.cfg @@ -0,0 +1,2 @@ +cmt_trailing_single_line_c_to_cpp = true +cmt_width = 100 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cond-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cond-1.cfg new file mode 100644 index 00000000..61669da9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cond-1.cfg @@ -0,0 +1,3 @@ +sp_cond_colon = force +sp_cond_question = force +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/convert_cmt_vbrace_one_line.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/convert_cmt_vbrace_one_line.cfg new file mode 100644 index 00000000..38a2ca92 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/convert_cmt_vbrace_one_line.cfg @@ -0,0 +1,5 @@ +sp_sparen_brace = add +mod_full_brace_if = add +nl_after_brace_open = true +nl_if_leave_one_liners = true +sp_inside_braces = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-1.cfg new file mode 100644 index 00000000..b5b95435 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-1.cfg @@ -0,0 +1,7 @@ +# CPP to C comment conversion +indent_columns = 4 +indent_with_tabs = 0 +pp_multiline_define_body_indent = 4 +code_width = 80 +cmt_cpp_to_c = true +cmt_star_cont = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-2.cfg new file mode 100644 index 00000000..9f0d9e3a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-2.cfg @@ -0,0 +1,6 @@ +# CPP to C comment conversion +indent_columns = 4 +indent_with_tabs = 0 +cmt_cpp_group = true +cmt_cpp_to_c = true +cmt_star_cont = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-3.cfg new file mode 100644 index 00000000..20bbb9e1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/cpp_to_c-3.cfg @@ -0,0 +1,9 @@ +# CPP to C comment conversion +indent_columns = 4 +indent_with_tabs = 0 +nl_after_multiline_comment = true +cmt_cpp_group = true +cmt_cpp_nl_start = true +cmt_cpp_nl_end = true +cmt_cpp_to_c = true +cmt_star_cont = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/custom_types_ssl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/custom_types_ssl.cfg new file mode 100644 index 00000000..4005234e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/custom_types_ssl.cfg @@ -0,0 +1,11 @@ +output_tab_size = 4 +sp_assign = add +sp_func_proto_paren = add +sp_func_def_paren = add +sp_inside_fparen = add +indent_columns = 4 +indent_func_def_param = true +indent_func_proto_param = true +align_func_params = true +set TYPE_WRAP LHASH_OF +set TYPE_WRAP STACK_OF
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-no.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-no.cfg new file mode 100644 index 00000000..bd2bd258 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-no.cfg @@ -0,0 +1,10 @@ +sp_cmt_cpp_start = add +nl_start_of_file = add +nl_start_of_file_min = 5 +nl_end_of_file = add +nl_end_of_file_min = 2 +align_on_tabstop = true +align_var_def_span = 8 +align_var_def_gap = 8 +align_right_cmt_span = 16 +align_right_cmt_at_col = 64
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-yes.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-yes.cfg new file mode 100644 index 00000000..bc1d5584 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/doxy-comment-yes.cfg @@ -0,0 +1,13 @@ +sp_cmt_cpp_start = add +sp_cmt_cpp_doxygen = true +nl_start_of_file = add +nl_start_of_file_min = 5 +nl_end_of_file = add +nl_end_of_file_min = 2 +align_on_tabstop = true +align_var_def_span = 8 +align_var_def_gap = 8 +align_right_cmt_span = 16 +align_right_cmt_at_col = 64 + +cmt_cpp_to_c = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-1.cfg new file mode 100644 index 00000000..b4e4aecb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-1.cfg @@ -0,0 +1,2 @@ +indent_columns = 2 +nl_else_if = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-2.cfg new file mode 100644 index 00000000..75d7936e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/else-if-2.cfg @@ -0,0 +1,2 @@ +indent_columns = 2 +indent_else_if = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/empty_body.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/empty_body.cfg new file mode 100644 index 00000000..b737dfd8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/empty_body.cfg @@ -0,0 +1,6 @@ +sp_arith = force +sp_before_ptr_star = remove +sp_after_ptr_star = force +sp_after_ptr_star_func = force +indent_columns = 4 +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/endif.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/endif.cfg new file mode 100644 index 00000000..ff69251b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/endif.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +pp_indent_at_level = true +pp_if_indent_code = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/enum_comma_ifdef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/enum_comma_ifdef.cfg new file mode 100644 index 00000000..a2622767 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/enum_comma_ifdef.cfg @@ -0,0 +1,2 @@ +mod_enum_last_comma = force + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/force_tab_after_define-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/force_tab_after_define-t.cfg new file mode 100644 index 00000000..67b04e78 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/force_tab_after_define-t.cfg @@ -0,0 +1 @@ +force_tab_after_define = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/freebsd.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/freebsd.cfg new file mode 100644 index 00000000..c0845eca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/freebsd.cfg @@ -0,0 +1,28 @@ +sp_sparen_brace = add +sp_arith = force +sp_bool = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_semi_for_empty = force +sp_between_semi_for_empty = force +sp_after_semi_for_empty = force +sp_type_func = force +sp_brace_else = force +indent_continue = 4 +nl_brace_else = remove +nl_for_brace = add +nl_while_brace = add +nl_switch_brace = add +nl_before_case = true +nl_after_func_proto_group = 2 +nl_after_func_body = 3 +pos_arith = trail +align_var_def_span = 1 +align_var_def_star_style = 1 +align_typedef_gap = 3 +align_typedef_span = 5 +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add +mod_full_paren_if_bool = true +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/func_call_user.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/func_call_user.cfg new file mode 100644 index 00000000..504fb3d8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/func_call_user.cfg @@ -0,0 +1,6 @@ +indent_columns = 4 +nl_end_of_file = force +nl_end_of_file_min = 1 +align_var_def_span = 20 +align_assign_span = 1 +mod_add_long_function_closebrace_comment = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ger.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ger.cfg new file mode 100644 index 00000000..268a4f19 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ger.cfg @@ -0,0 +1,38 @@ +output_tab_size = 4 +sp_arith = add +sp_assign = add +sp_pp_concat = remove +sp_before_sparen = add +sp_after_comma = add +indent_columns = 4 +indent_func_call_param = true +indent_func_def_param = true +indent_func_proto_param = true +indent_func_param_double = true +nl_end_of_file = add +nl_end_of_file_min = 2 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_multi_line_define = true +nl_ds_struct_enum_cmt = true +nl_after_func_body = 2 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +nl_after_return = true +align_var_def_span = 3 +align_var_def_thresh = 5 +align_var_struct_span = 2 +align_var_struct_thresh = 5 +align_right_cmt_span = 4 +align_right_cmt_at_col = 1 +cmt_star_cont = true +mod_add_long_ifdef_endif_comment = 1 +mod_add_long_ifdef_else_comment = 1 +type BIO +set TYPE_WRAP LHASH_OF +set TYPE_WRAP STACK_OF +type stname +type type + +# not needed but without this option, 02501 is unstable! +align_right_cmt_mix = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/i1564.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/i1564.cfg new file mode 100644 index 00000000..74c53e52 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/i1564.cfg @@ -0,0 +1,2 @@ +pos_comma = lead +pos_enum_comma = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/if_chain.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/if_chain.cfg new file mode 100644 index 00000000..659ec26e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/if_chain.cfg @@ -0,0 +1,12 @@ +sp_after_sparen = add +sp_before_sparen = force +sp_inside_sparen = remove +sp_else_brace = force +sp_brace_else = force +nl_if_brace = remove +nl_brace_else = remove +nl_else_brace = remove +align_right_cmt_span = 3 +mod_full_brace_if_chain = 1 +mod_full_brace_nl = 3 +mod_full_brace_while = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-1.cfg new file mode 100644 index 00000000..943d0eb6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-1.cfg @@ -0,0 +1,3 @@ +output_tab_size = 4 +indent_columns = 4 +indent_switch_case = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-vbrace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-vbrace.cfg new file mode 100644 index 00000000..7e6ca7c1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent-vbrace.cfg @@ -0,0 +1,7 @@ +sp_assign = add +sp_inside_sparen = add +sp_inside_fparen = add +indent_columns = 1 +indent_with_tabs = 0 +indent_vbrace_open_on_tabstop = true +nl_after_func_body = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_assign.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_assign.cfg new file mode 100644 index 00000000..6bad61f1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_assign.cfg @@ -0,0 +1,2 @@ +indent_align_assign = false +indent_off_after_assign = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-false.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-false.cfg new file mode 100644 index 00000000..15e0e2e8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-false.cfg @@ -0,0 +1,2 @@ +# test for issue #3362 +indent_case_comment = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-true.cfg new file mode 100644 index 00000000..abcadd59 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_case_comment-true.cfg @@ -0,0 +1,2 @@ +# test for issue #3362 +indent_case_comment = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_comment_align_thresh-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_comment_align_thresh-0.cfg new file mode 100644 index 00000000..dc730bf8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_comment_align_thresh-0.cfg @@ -0,0 +1 @@ +indent_comment_align_thresh = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-false.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-false.cfg new file mode 100644 index 00000000..b686aabe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-false.cfg @@ -0,0 +1 @@ +indent_compound_literal_return = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-true.cfg new file mode 100644 index 00000000..9fa1d2ef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_compound_literal_return-true.cfg @@ -0,0 +1 @@ +indent_compound_literal_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_call_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_call_param.cfg new file mode 100644 index 00000000..26b4e03a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_call_param.cfg @@ -0,0 +1,4 @@ +output_tab_size = 3 +indent_columns = 3 +indent_func_call_param = true +nl_func_type_name = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_def_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_def_param.cfg new file mode 100644 index 00000000..c448b21f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_def_param.cfg @@ -0,0 +1,4 @@ +output_tab_size = 3 +indent_columns = 3 +indent_func_def_param = true +nl_func_proto_type_name = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_param.cfg new file mode 100644 index 00000000..7db464b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_param.cfg @@ -0,0 +1,5 @@ +output_tab_size = 3 +indent_columns = 3 +indent_func_call_param = true +indent_func_def_param = true +indent_func_proto_param = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_proto_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_proto_param.cfg new file mode 100644 index 00000000..6cfb83ed --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_func_proto_param.cfg @@ -0,0 +1,3 @@ +output_tab_size = 3 +indent_columns = 3 +indent_func_proto_param = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_ignore_bool-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_ignore_bool-true.cfg new file mode 100644 index 00000000..0f952471 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_ignore_bool-true.cfg @@ -0,0 +1 @@ +indent_ignore_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-false.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-false.cfg new file mode 100644 index 00000000..f9e3bdca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-false.cfg @@ -0,0 +1 @@ +indent_macro_brace = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-true.cfg new file mode 100644 index 00000000..62573cad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_macro_brace-true.cfg @@ -0,0 +1 @@ +indent_macro_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close--1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close--1.cfg new file mode 100644 index 00000000..0656a55f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close--1.cfg @@ -0,0 +1 @@ +indent_paren_close = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-1.cfg new file mode 100644 index 00000000..e380b281 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-1.cfg @@ -0,0 +1,6 @@ +sp_after_comma = force +sp_inside_fparen = force +indent_paren_close = 1 +indent_comma_paren = 1 +indent_bool_paren = 1 +pos_comma = lead diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-2.cfg new file mode 100644 index 00000000..2a77fedf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_paren_close-2.cfg @@ -0,0 +1 @@ +indent_paren_close = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_single_line_comments_after.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_single_line_comments_after.cfg new file mode 100644 index 00000000..bae9787c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_single_line_comments_after.cfg @@ -0,0 +1,4 @@ +# test for issue #3249 +indent_columns = 4 +indent_single_line_comments_after = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_sparen_extra-8.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_sparen_extra-8.cfg new file mode 100644 index 00000000..6344ceb2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/indent_sparen_extra-8.cfg @@ -0,0 +1,2 @@ +indent_sparen_extra = 8 +indent_continue = 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/issue_527.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/issue_527.cfg new file mode 100644 index 00000000..166fffec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/issue_527.cfg @@ -0,0 +1,266 @@ +## Ingres coding style config for http://uncrustify.sourceforge.net/
+##
+## Based on defaults.cfg file (from uncrustify-0.40).
+## Main diffs are spaces for tabs and tab length.
+### FIXME find out why old 0.38 version removed spaces in "# if..." 0.40 retains them.
+##
+## There is a GUI from http://universalindent.sourceforge.net/
+## which can use different formatters too, e.g.
+## gnu indent (no suport for EXEC SQL)
+## bcpp
+
+## FIXME try different settings for indent_preserve_sql - not seeing any difference!
+##indent_preserve_sql = false # false/true
+
+# How to run:
+# $ uncrustify -c ./ingres.cfg -f dirtyfile.c > cleanfile.c
+# > uncrustify -c ingres.cfg -f dirtyfile.c > cleanfile.c
+#
+
+##############################
+
+newlines = auto
+input_tab_size = 4
+output_tab_size = 4
+string_escape_char = 92
+string_escape_char2 = 0
+indent_columns = 4
+indent_with_tabs = 0
+indent_align_string = false
+indent_xml_string = 0
+indent_brace = 0
+indent_braces = false
+indent_braces_no_func = false
+indent_brace_parent = false
+indent_namespace = false
+indent_class = false
+indent_class_colon = false
+indent_func_call_param = false
+indent_member = 0
+indent_single_line_comments_before = 0
+indent_switch_case = indent_columns
+indent_case_shift = 0
+indent_case_brace = 0
+indent_col1_comment = false
+indent_label = 1
+indent_access_spec = 1
+indent_paren_nl = false
+indent_paren_close = 0
+indent_comma_paren = 0
+indent_bool_paren = 0
+indent_square_nl = false
+indent_preserve_sql = false
+sp_arith = ignore
+sp_assign = ignore
+sp_bool = ignore
+sp_compare = ignore
+sp_inside_paren = ignore
+sp_paren_paren = ignore
+sp_balance_nested_parens = false
+sp_paren_brace = ignore
+sp_before_ptr_star = ignore
+sp_between_ptr_star = ignore
+sp_after_ptr_star = ignore
+sp_before_byref = ignore
+sp_after_byref = ignore
+sp_before_angle = ignore
+sp_after_angle = ignore
+sp_angle_paren = ignore
+sp_angle_word = ignore
+sp_before_sparen = add
+sp_inside_sparen = remove
+sp_after_sparen = remove
+sp_sparen_brace = ignore
+sp_special_semi = ignore
+sp_before_semi = remove
+sp_before_semi_for = ignore
+sp_before_semi_for_empty = ignore
+sp_between_semi_for_empty = ignore
+sp_after_semi_for_empty = ignore
+sp_before_square = remove
+sp_before_squares = remove
+sp_inside_square = remove
+sp_after_comma = add
+sp_before_comma = remove
+sp_after_operator = ignore
+sp_after_cast = add
+sp_inside_paren_cast = remove
+sp_sizeof_paren = remove
+sp_after_tag = ignore
+sp_inside_braces_enum = ignore
+sp_inside_braces_struct = ignore
+sp_inside_braces = ignore
+sp_inside_angle = remove
+sp_type_func = remove
+sp_func_proto_paren = remove
+sp_func_def_paren = remove
+sp_inside_fparens = remove
+sp_inside_fparen = remove
+sp_square_fparen = ignore
+sp_fparen_brace = ignore
+sp_func_call_paren = ignore
+sp_func_class_paren = ignore
+sp_return_paren = ignore
+sp_attribute_paren = ignore
+sp_macro = ignore
+sp_macro_func = ignore
+sp_else_brace = ignore
+sp_brace_else = ignore
+sp_catch_brace = ignore
+sp_brace_catch = ignore
+sp_finally_brace = ignore
+sp_brace_finally = ignore
+sp_try_brace = ignore
+sp_getset_brace = ignore
+sp_before_dc = ignore
+sp_after_dc = ignore
+sp_d_array_colon = ignore
+sp_not = remove
+sp_inv = remove
+sp_addr = remove
+sp_deref = remove
+align_keep_tabs = false
+align_with_tabs = false
+align_on_tabstop = false
+align_number_right = false
+align_func_params = false
+align_var_def_span = 1
+align_var_def_star_style = 1
+align_var_def_amp_style = 0
+align_var_def_thresh = 0
+align_var_def_colon = false
+align_var_def_inline = false
+align_assign_span = 0
+align_assign_thresh = 0
+align_enum_equ_span = 0
+align_enum_equ_thresh = 0
+align_var_struct_span = 0
+align_var_struct_thresh = 0
+align_struct_init_span = 0
+align_typedef_gap = 0
+align_typedef_span = 0
+align_typedef_func = 0
+align_typedef_star_style = 0
+align_typedef_amp_style = 0
+align_right_cmt_span = 0
+align_func_proto_span = 0
+align_nl_cont = 0
+align_pp_define_gap = 0
+align_pp_define_span = 0
+nl_collapse_empty_body = false
+nl_assign_leave_one_liners = false
+nl_class_leave_one_liners = false
+nl_enum_leave_one_liners = false
+nl_getset_leave_one_liners = false
+nl_func_leave_one_liners = false
+nl_if_leave_one_liners = false
+nl_start_of_file = ignore
+nl_start_of_file_min = 0
+nl_end_of_file = ignore
+nl_end_of_file_min = 0
+nl_assign_brace = ignore
+nl_assign_square = ignore
+nl_after_square_assign = ignore
+nl_var_def_blk_end_func_top = 0
+nl_fcall_brace = ignore
+nl_enum_brace = ignore
+nl_struct_brace = ignore
+nl_union_brace = ignore
+nl_if_brace = force
+nl_brace_else = force
+nl_elseif_brace = force
+nl_else_brace = force
+nl_brace_finally = ignore
+nl_finally_brace = ignore
+nl_try_brace = ignore
+nl_getset_brace = ignore
+nl_for_brace = force
+nl_catch_brace = ignore
+nl_brace_catch = ignore
+nl_while_brace = force
+nl_do_brace = force
+nl_brace_while = force
+nl_switch_brace = force
+nl_multi_line_cond = false
+nl_before_case = false
+nl_after_case = false
+nl_namespace_brace = ignore
+nl_template_class = ignore
+nl_class_brace = ignore
+nl_class_init_args = ignore
+nl_func_type_name = ignore
+nl_func_paren = force
+nl_func_decl_start = ignore
+nl_func_decl_args = ignore
+nl_func_decl_end = ignore
+nl_fdef_brace = ignore
+nl_after_return = false
+nl_after_semicolon = false
+nl_after_brace_open = false
+nl_after_vbrace_open = false
+nl_define_macro = false
+nl_squeeze_ifdef = false
+nl_before_if = ignore
+nl_after_if = ignore
+nl_before_for = ignore
+nl_after_for = ignore
+nl_before_while = ignore
+nl_after_while = ignore
+nl_before_switch = ignore
+nl_after_switch = ignore
+nl_before_do = ignore
+nl_after_do = ignore
+nl_ds_struct_enum_cmt = false
+nl_ds_struct_enum_close_brace = false
+nl_class_colon = ignore
+nl_create_if_one_liner = false
+nl_create_for_one_liner = false
+nl_create_while_one_liner = false
+pos_bool = ignore
+pos_comma = ignore
+pos_class_comma = ignore
+pos_class_colon = ignore
+code_width = 0
+ls_for_split_full = false
+ls_func_split_full = false
+nl_max = 0
+nl_after_func_proto = 0
+nl_after_func_proto_group = 0
+nl_after_func_body = 0
+nl_after_func_body_one_liner = 0
+nl_before_block_comment = 0
+nl_before_c_comment = 0
+nl_before_cpp_comment = 0
+nl_after_multiline_comment = false
+nl_before_access_spec = 0
+nl_after_access_spec = 0
+eat_blanks_after_open_brace = false
+eat_blanks_before_close_brace = false
+mod_full_brace_do = ignore
+mod_full_brace_for = ignore
+mod_full_brace_function = ignore
+mod_full_brace_if = ignore
+mod_full_brace_nl = 0
+mod_full_brace_while = ignore
+mod_paren_on_return = ignore
+mod_pawn_semicolon = false
+mod_full_paren_if_bool = false
+mod_remove_extra_semicolon = false
+cmt_width = 0
+cmt_c_group = false
+cmt_c_nl_start = false
+cmt_c_nl_end = false
+cmt_cpp_group = false
+cmt_cpp_nl_start = false
+cmt_cpp_nl_end = false
+cmt_cpp_to_c = false
+cmt_star_cont = false
+cmt_sp_before_star_cont = 0
+cmt_sp_after_star_cont = 0
+pp_indent = ignore
+pp_indent_at_level = false
+pp_space_after = ignore
+pp_indent_region = 0
+pp_region_indent_code = false
+pp_indent_if = 0
+pp_if_indent_code = false
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_1.cfg new file mode 100644 index 00000000..68402fd0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_1.cfg @@ -0,0 +1,8 @@ +sp_sparen_brace = add +sp_after_bit_colon = force +sp_before_bit_colon = force +nl_before_case = true +nl_after_semicolon = true +nl_after_label_colon = true +nl_remove_extra_newlines = 2 +align_var_struct_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_2.cfg new file mode 100644 index 00000000..eccbdec2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/label_colon_nl_2.cfg @@ -0,0 +1,7 @@ +sp_sparen_brace = add +sp_after_bit_colon = force +sp_before_bit_colon = force +nl_before_case = true +nl_after_semicolon = true +nl_remove_extra_newlines = 2 +align_var_struct_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/leave_one_liners.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/leave_one_liners.cfg new file mode 100644 index 00000000..931e9465 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/leave_one_liners.cfg @@ -0,0 +1,14 @@ +nl_assign_brace = force +nl_enum_brace = force +nl_if_brace = force +nl_while_brace = force +nl_do_brace = force +nl_for_brace = force + +nl_assign_leave_one_liners = true +nl_enum_leave_one_liners = true +nl_func_leave_one_liners = true +nl_if_leave_one_liners = true +nl_while_leave_one_liners = true +nl_do_leave_one_liners = true +nl_for_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren.cfg new file mode 100644 index 00000000..2c0049ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren.cfg @@ -0,0 +1,19 @@ +sp_bool = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_sparen = force +sp_inside_sparen = remove +sp_return_paren = remove +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_if_brace = add +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +mod_full_brace_if = add +mod_paren_on_return = add +mod_full_paren_if_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren2.cfg new file mode 100644 index 00000000..113ee868 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod-paren2.cfg @@ -0,0 +1,18 @@ +sp_bool = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_sparen = force +sp_inside_sparen = remove +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_if_brace = add +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +mod_full_brace_if = add +mod_paren_on_return = remove +mod_full_paren_if_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_case_brace_add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_case_brace_add.cfg new file mode 100644 index 00000000..bfcca51a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_case_brace_add.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_case_brace = 3 +nl_before_case = true +nl_after_case = true +mod_case_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-0.cfg new file mode 100644 index 00000000..52428063 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-0.cfg @@ -0,0 +1 @@ +mod_infinite_loop = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-1.cfg new file mode 100644 index 00000000..8b4dd7f9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-1.cfg @@ -0,0 +1,2 @@ +sp_after_sparen = force +mod_infinite_loop = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-2.cfg new file mode 100644 index 00000000..80fdae95 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-2.cfg @@ -0,0 +1,2 @@ +sp_after_sparen = add +mod_infinite_loop = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-3.cfg new file mode 100644 index 00000000..b026525b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-3.cfg @@ -0,0 +1 @@ +mod_infinite_loop = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-4.cfg new file mode 100644 index 00000000..05fe0cd6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-4.cfg @@ -0,0 +1,2 @@ +sp_after_sparen = force +mod_infinite_loop = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-5.cfg new file mode 100644 index 00000000..4b127892 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_infinite_loop-5.cfg @@ -0,0 +1 @@ +mod_infinite_loop = 5 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-left.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-left.cfg new file mode 100644 index 00000000..2f0fd00d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-left.cfg @@ -0,0 +1,9 @@ +mod_int_short = add +mod_short_int = add +mod_int_long = add +mod_long_int = add +mod_int_signed = add +mod_signed_int = add +mod_int_unsigned = add +mod_unsigned_int = add +mod_int_prefer_int_on_left = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-right.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-right.cfg new file mode 100644 index 00000000..35b3d317 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-add-all-prefer-right.cfg @@ -0,0 +1,9 @@ +mod_int_short = add +mod_short_int = add +mod_int_long = add +mod_long_int = add +mod_int_signed = add +mod_signed_int = add +mod_int_unsigned = add +mod_unsigned_int = add +mod_int_prefer_int_on_left = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-all.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-all.cfg new file mode 100644 index 00000000..d072c2f4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-all.cfg @@ -0,0 +1,8 @@ +mod_int_short = remove +mod_short_int = remove +mod_int_long = remove +mod_long_int = remove +mod_int_signed = remove +mod_signed_int = remove +mod_int_unsigned = remove +mod_unsigned_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-left.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-left.cfg new file mode 100644 index 00000000..b2396016 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-left.cfg @@ -0,0 +1,4 @@ +mod_int_short = remove +mod_int_long = remove +mod_int_signed = remove +mod_int_unsigned = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-right.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-right.cfg new file mode 100644 index 00000000..aa16c67c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-remove-right.cfg @@ -0,0 +1,4 @@ +mod_short_int = remove +mod_long_int = remove +mod_signed_int = remove +mod_unsigned_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-left.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-left.cfg new file mode 100644 index 00000000..4db8af41 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-left.cfg @@ -0,0 +1,9 @@ +mod_int_short = add +mod_short_int = remove +mod_int_long = add +mod_long_int = remove +mod_int_signed = add +mod_signed_int = remove +mod_int_unsigned = add +mod_unsigned_int = remove +mod_int_prefer_int_on_left = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-right.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-right.cfg new file mode 100644 index 00000000..78c5806b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int-shift-right.cfg @@ -0,0 +1,9 @@ +mod_int_short = remove +mod_short_int = add +mod_int_long = remove +mod_long_int = add +mod_int_signed = remove +mod_signed_int = add +mod_int_unsigned = remove +mod_unsigned_int = add +mod_int_prefer_int_on_left = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-a.cfg new file mode 100644 index 00000000..c8cd7a2c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-a.cfg @@ -0,0 +1 @@ +mod_int_long = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-r.cfg new file mode 100644 index 00000000..2f499ac8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_long-r.cfg @@ -0,0 +1 @@ +mod_int_long = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-a.cfg new file mode 100644 index 00000000..94ca506b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-a.cfg @@ -0,0 +1 @@ +mod_int_short = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-r.cfg new file mode 100644 index 00000000..e6458b57 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_short-r.cfg @@ -0,0 +1 @@ +mod_int_short = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-a.cfg new file mode 100644 index 00000000..f2ad55d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-a.cfg @@ -0,0 +1 @@ +mod_int_signed = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-r.cfg new file mode 100644 index 00000000..7e418238 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_signed-r.cfg @@ -0,0 +1 @@ +mod_int_signed = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-a.cfg new file mode 100644 index 00000000..fcafcddc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-a.cfg @@ -0,0 +1 @@ +mod_int_unsigned = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-r.cfg new file mode 100644 index 00000000..cef8d459 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_int_unsigned-r.cfg @@ -0,0 +1 @@ +mod_int_unsigned = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-a.cfg new file mode 100644 index 00000000..c3ac76dd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-a.cfg @@ -0,0 +1 @@ +mod_long_int = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-r.cfg new file mode 100644 index 00000000..15a40e52 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_long_int-r.cfg @@ -0,0 +1 @@ +mod_long_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_brace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_brace.cfg new file mode 100644 index 00000000..acb25734 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_brace.cfg @@ -0,0 +1,7 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_case_brace = 3 +nl_before_case = true +nl_after_case = true +mod_move_case_break = true +mod_case_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_return.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_return.cfg new file mode 100644 index 00000000..0e698ea9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_move_case_return.cfg @@ -0,0 +1 @@ +mod_move_case_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-a.cfg new file mode 100644 index 00000000..d6986aa1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-a.cfg @@ -0,0 +1 @@ +mod_short_int = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-r.cfg new file mode 100644 index 00000000..53daa53f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_short_int-r.cfg @@ -0,0 +1 @@ +mod_short_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-a.cfg new file mode 100644 index 00000000..e951d8e7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-a.cfg @@ -0,0 +1 @@ +mod_signed_int = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-r.cfg new file mode 100644 index 00000000..aa70348d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_signed_int-r.cfg @@ -0,0 +1 @@ +mod_signed_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-a.cfg new file mode 100644 index 00000000..7141c9cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-a.cfg @@ -0,0 +1 @@ +mod_unsigned_int = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-r.cfg new file mode 100644 index 00000000..06f93143 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/mod_unsigned_int-r.cfg @@ -0,0 +1 @@ +mod_unsigned_int = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/my_conf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/my_conf.cfg new file mode 100644 index 00000000..9f23ca92 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/my_conf.cfg @@ -0,0 +1,18 @@ +sp_sparen_brace = add
+sp_assign = add
+sp_before_sparen = add
+sp_inside_sparen = remove
+sp_func_def_paren = force
+indent_columns = 4
+indent_with_tabs = 0
+indent_switch_case = 4
+indent_switch_break_with_case = true
+nl_end_of_file = force
+nl_end_of_file_min = 1
+nl_if_brace = add
+nl_else_brace = add
+nl_switch_brace = add
+nl_before_case = true
+cmt_width = 80
+mod_full_brace_for = add
+mod_full_brace_if = add
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nepenthes.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nepenthes.cfg new file mode 100644 index 00000000..150294da --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nepenthes.cfg @@ -0,0 +1,3 @@ +input_tab_size = 4 +output_tab_size = 4 +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/newline_after_endif.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/newline_after_endif.cfg new file mode 100644 index 00000000..afd7693d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/newline_after_endif.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +indent_with_tabs = 0 +pp_if_indent_code = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl-comment.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl-comment.cfg new file mode 100644 index 00000000..0d1e2a11 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl-comment.cfg @@ -0,0 +1,7 @@ +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_for_brace = add +nl_before_block_comment = 3 +nl_before_c_comment = 3 +nl_before_cpp_comment = 4 +mod_full_brace_for = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign1.cfg new file mode 100644 index 00000000..1f4da850 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign1.cfg @@ -0,0 +1,6 @@ +sp_arith = force +sp_assign = force +indent_columns = 4 +pos_arith = lead +pos_assign = lead +code_width = 60
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign2.cfg new file mode 100644 index 00000000..b4cfb4d1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_assign2.cfg @@ -0,0 +1,5 @@ +sp_assign = force +indent_columns = 4 +indent_with_tabs = 0 +pos_assign = trail +code_width = 60
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_false.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_false.cfg new file mode 100644 index 00000000..7636745b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_false.cfg @@ -0,0 +1 @@ +nl_before_return = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_true.cfg new file mode 100644 index 00000000..1e6976fc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_before_return_true.cfg @@ -0,0 +1 @@ +nl_before_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_brace_test.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_brace_test.cfg new file mode 100644 index 00000000..0d3f7109 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_brace_test.cfg @@ -0,0 +1,12 @@ +sp_assign = force +sp_compare = force +sp_before_sparen = add +sp_func_def_paren = add +sp_return_paren = add +indent_columns = 2 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = force +nl_for_brace = add +nl_fdef_brace = force +nl_after_brace_open = true +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_1.cfg new file mode 100644 index 00000000..c24e35b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_1.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +nl_collapse_empty_body = false +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_2.cfg new file mode 100644 index 00000000..03137e3d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_2.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +nl_collapse_empty_body = true +nl_collapse_empty_body_functions = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_3.cfg new file mode 100644 index 00000000..8dcbcb2d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_3.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +nl_collapse_empty_body = false +nl_collapse_empty_body_functions = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_4.cfg new file mode 100644 index 00000000..ca27b7dd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_collapse_empty_4.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +nl_collapse_empty_body = true +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_create_one_liner.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_create_one_liner.cfg new file mode 100644 index 00000000..8726c6ce --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_create_one_liner.cfg @@ -0,0 +1,5 @@ +sp_after_sparen = add +indent_columns = 3 +nl_create_if_one_liner = true +nl_create_for_one_liner = true +nl_create_while_one_liner = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum-2.cfg new file mode 100644 index 00000000..01c60de4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum-2.cfg @@ -0,0 +1,4 @@ +# Double-space commented struct/enum/union blocks +# Add an extra newline before the close brace +nl_ds_struct_enum_cmt = true +nl_ds_struct_enum_close_brace = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum_cmt-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum_cmt-t.cfg new file mode 100644 index 00000000..1864b51d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_ds_struct_enum_cmt-t.cfg @@ -0,0 +1 @@ +nl_ds_struct_enum_cmt = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_endif.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_endif.cfg new file mode 100644 index 00000000..b056153e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_endif.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_squeeze_ifdef = true +pp_if_indent_code = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.cfg new file mode 100644 index 00000000..b6a28869 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.cfg @@ -0,0 +1,2 @@ +nl_enum_own_lines = remove +code_width = 80
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.rerun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.rerun.cfg new file mode 100644 index 00000000..f0d3f7b2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-3.rerun.cfg @@ -0,0 +1 @@ +include "nl_enum_own_lines-3.cfg" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-4.cfg new file mode 100644 index 00000000..70973ec8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-4.cfg @@ -0,0 +1,2 @@ +nl_enum_own_lines = force +nl_remove_extra_newlines = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-a.cfg new file mode 100644 index 00000000..66e7dbfa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_enum_own_lines-a.cfg @@ -0,0 +1 @@ +nl_enum_own_lines = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-1.cfg new file mode 100644 index 00000000..e3befa10 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-1.cfg @@ -0,0 +1,10 @@ +nl_func_call_args = add +nl_func_call_start = add +nl_func_call_paren = add +nl_func_call_paren_empty = add +nl_func_call_empty = add +nl_func_call_end = add +nl_func_call_start_multi_line = false +nl_func_call_args_multi_line = true +nl_func_call_end_multi_line = true +set FUNC_CALL_USER userfunc diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-2.cfg new file mode 100644 index 00000000..7b366b5b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-2.cfg @@ -0,0 +1,10 @@ +nl_func_call_args = ignore +nl_func_call_start = add +nl_func_call_paren = add +nl_func_call_paren_empty = add +nl_func_call_empty = add +nl_func_call_end = add +nl_func_call_start_multi_line = true +nl_func_call_args_multi_line = true +nl_func_call_end_multi_line = true +set FUNC_CALL_USER userfunc diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-3.cfg new file mode 100644 index 00000000..44c64753 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-3.cfg @@ -0,0 +1,10 @@ +nl_func_call_args = remove +nl_func_call_start = remove +nl_func_call_paren = remove +nl_func_call_paren_empty = remove +nl_func_call_empty = remove +nl_func_call_end = remove +nl_func_call_start_multi_line = false +nl_func_call_args_multi_line = false +nl_func_call_end_multi_line = false +set FUNC_CALL_USER userfunc diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-4.cfg new file mode 100644 index 00000000..af273843 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-4.cfg @@ -0,0 +1,10 @@ +nl_func_call_args = ignore +nl_func_call_start = remove +nl_func_call_paren = remove +nl_func_call_paren_empty = remove +nl_func_call_empty = remove +nl_func_call_end = remove +nl_func_call_start_multi_line = false +nl_func_call_args_multi_line = false +nl_func_call_end_multi_line = false +set FUNC_CALL_USER userfunc diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-5.cfg new file mode 100644 index 00000000..6e5553c0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_func_call-5.cfg @@ -0,0 +1,10 @@ +nl_func_call_args = add +nl_func_call_start = ignore +nl_func_call_paren = ignore +nl_func_call_paren_empty = ignore +nl_func_call_empty = ignore +nl_func_call_end = ignore +nl_func_call_start_multi_line = false +nl_func_call_args_multi_line = false +nl_func_call_end_multi_line = false +set FUNC_CALL_USER userfunc diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_semicolon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_semicolon.cfg new file mode 100644 index 00000000..d099e0c7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_semicolon.cfg @@ -0,0 +1,8 @@ +indent_columns = 3 +nl_struct_brace = add +nl_for_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +align_var_def_star_style = 1 +align_var_struct_span = 3 +mod_full_brace_for = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_whole_file_ifdef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_whole_file_ifdef.cfg new file mode 100644 index 00000000..1d6a585a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/nl_whole_file_ifdef.cfg @@ -0,0 +1,7 @@ +nl_squeeze_ifdef = true +nl_squeeze_ifdef_top_level = true +nl_after_func_proto = 2 +nl_before_whole_file_ifdef = 3 +nl_after_whole_file_ifdef = 3 +nl_before_whole_file_endif = 3 +nl_after_whole_file_endif = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pascal_ptr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pascal_ptr.cfg new file mode 100644 index 00000000..1760abca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pascal_ptr.cfg @@ -0,0 +1,5 @@ +sp_arith = force +sp_before_ptr_star = remove +sp_after_ptr_star = force +sp_after_ptr_star_func = force +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-eol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-eol.cfg new file mode 100644 index 00000000..90267209 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-eol.cfg @@ -0,0 +1,2 @@ +sp_compare = force +pos_compare = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-sol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-sol.cfg new file mode 100644 index 00000000..a4235d7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_compare-sol.cfg @@ -0,0 +1,2 @@ +sp_compare = force +pos_compare = lead
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-l.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-l.cfg new file mode 100644 index 00000000..11eb46fd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-l.cfg @@ -0,0 +1,3 @@ +pos_conditional = lead +sp_cond_colon = add +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-t.cfg new file mode 100644 index 00000000..79bb52d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pos_conditional-t.cfg @@ -0,0 +1,3 @@ +pos_conditional = trail +sp_cond_colon = add +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-indent-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-indent-2.cfg new file mode 100644 index 00000000..1387ccfe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-indent-2.cfg @@ -0,0 +1,8 @@ +# Remove all PP spacing and indent +pp_indent = remove +pp_space_after = add +# Gives the format +# |#ifdef SOMETHING +# |# define X +# |#endif +pp_space_count = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-space.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-space.cfg new file mode 100644 index 00000000..e91685ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp-space.cfg @@ -0,0 +1,3 @@ +output_tab_size = 4 +pp_indent = add +pp_indent_count = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-0.cfg new file mode 100644 index 00000000..82f11f27 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-0.cfg @@ -0,0 +1,4 @@ +# default region indent +indent_columns = 4 +pp_indent = add +pp_indent_at_level = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-1.cfg new file mode 100644 index 00000000..7c01e819 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-1.cfg @@ -0,0 +1,5 @@ +# indented region code +indent_columns = 4 +pp_indent = add +pp_indent_at_level = true +pp_if_indent_code = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-2.cfg new file mode 100644 index 00000000..6f912806 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-2.cfg @@ -0,0 +1,5 @@ +# out-dented region preprocs +indent_columns = 4 +pp_indent = add +pp_indent_at_level = true +pp_indent_if = -4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-3.cfg new file mode 100644 index 00000000..4b876498 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-3.cfg @@ -0,0 +1,5 @@ +# Abs column region preproc +indent_columns = 4 +indent_col1_comment = true +pp_indent = add +pp_if_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-4.cfg new file mode 100644 index 00000000..fe29f734 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent-4.cfg @@ -0,0 +1,6 @@ +# indented region code +indent_columns = 4 +pp_indent = add +pp_indent_at_level = true +pp_if_indent_code = true +pp_define_at_level = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent_code-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent_code-true.cfg new file mode 100644 index 00000000..cb00f671 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_if_indent_code-true.cfg @@ -0,0 +1 @@ +pp_if_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-false.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-false.cfg new file mode 100644 index 00000000..6f780147 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-false.cfg @@ -0,0 +1,4 @@ +# test for issue #3343 +pp_indent_at_level = true +pp_if_indent_code = true +pp_include_at_level = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-true.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-true.cfg new file mode 100644 index 00000000..bc062b9f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_include_at_level-true.cfg @@ -0,0 +1,4 @@ +# test for issue #3343 +pp_indent_at_level = true +pp_if_indent_code = true +pp_include_at_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent-a.cfg new file mode 100644 index 00000000..f9f9b3b3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent-a.cfg @@ -0,0 +1 @@ +pp_indent = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_brace--1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_brace--1.cfg new file mode 100644 index 00000000..ecd054cb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_brace--1.cfg @@ -0,0 +1,2 @@ +pp_if_indent_code = true +pp_indent_brace = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_in_guard.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_in_guard.cfg new file mode 100644 index 00000000..2c4e2545 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_in_guard.cfg @@ -0,0 +1,5 @@ +# test for issue #3246 +pp_if_indent_code = true +pp_indent = add +pp_indent_count = 8 +pp_indent_in_guard = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_0.cfg new file mode 100644 index 00000000..7e50c5a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_0.cfg @@ -0,0 +1,5 @@ +output_tab_size = 2 +indent_columns = 2 +indent_with_tabs = 0 +pp_indent = force +pp_indent_with_tabs = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_1.cfg new file mode 100644 index 00000000..c3daa492 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_1.cfg @@ -0,0 +1,5 @@ +output_tab_size = 2 +indent_columns = 2 +indent_with_tabs = 1 +pp_indent = force +pp_indent_with_tabs = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_2.cfg new file mode 100644 index 00000000..bb793d00 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_-1_2.cfg @@ -0,0 +1,5 @@ +output_tab_size = 2 +indent_columns = 2 +indent_with_tabs = 2 +pp_indent = force +pp_indent_with_tabs = -1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_0.cfg new file mode 100644 index 00000000..85aa06bc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_0.cfg @@ -0,0 +1,4 @@ +output_tab_size = 2 +indent_columns = 2 +pp_indent = force +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_1.cfg new file mode 100644 index 00000000..4a798a12 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_1.cfg @@ -0,0 +1,4 @@ +output_tab_size = 2 +indent_columns = 2 +pp_indent = force +pp_indent_with_tabs = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_2.cfg new file mode 100644 index 00000000..11c06aa2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_indent_with_tabs_2.cfg @@ -0,0 +1,4 @@ +output_tab_size = 2 +indent_columns = 2 +pp_indent = force +pp_indent_with_tabs = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_nl.cfg new file mode 100644 index 00000000..e0e639e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_nl.cfg @@ -0,0 +1,6 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_cnt3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_cnt3.cfg new file mode 100644 index 00000000..32b1a98b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_cnt3.cfg @@ -0,0 +1,8 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 3 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_col1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_col1.cfg new file mode 100644 index 00000000..14def669 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_col1.cfg @@ -0,0 +1,8 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 0 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-1.cfg new file mode 100644 index 00000000..1154702c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-1.cfg @@ -0,0 +1,9 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 2 +pp_multiline_define_body_indent = -1 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-5.cfg new file mode 100644 index 00000000..e77ffa65 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml-5.cfg @@ -0,0 +1,9 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 2 +pp_multiline_define_body_indent = -5 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml0.cfg new file mode 100644 index 00000000..75d73d46 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml0.cfg @@ -0,0 +1,9 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 2 +pp_multiline_define_body_indent = 0 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml2.cfg new file mode 100644 index 00000000..a3cc63be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml2.cfg @@ -0,0 +1,9 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 2 +pp_multiline_define_body_indent = 2 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml4.cfg new file mode 100644 index 00000000..19ae0849 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_align_pp_ml4.cfg @@ -0,0 +1,9 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_indent_count = 2 +pp_multiline_define_body_indent = 4 +pp_indent = force +align_nl_cont = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_ignore_body.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_ignore_body.cfg new file mode 100644 index 00000000..ad3114b8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_ignore_body.cfg @@ -0,0 +1,5 @@ +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 +pp_ignore_define_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_with_spaces.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_with_spaces.cfg new file mode 100644 index 00000000..d8100e67 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_multiline_define_with_spaces.cfg @@ -0,0 +1,5 @@ +sp_sparen_brace = add +input_tab_size = 2 +output_tab_size = 2 +indent_columns = 2 +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_ret.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_ret.cfg new file mode 100644 index 00000000..b1fb2000 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_ret.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_after.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_after.cfg new file mode 100644 index 00000000..9bc1026a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_after.cfg @@ -0,0 +1,3 @@ +pp_indent = remove +pp_space_after = force +pp_space_count = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before.cfg new file mode 100644 index 00000000..e26fbfe4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before.cfg @@ -0,0 +1,3 @@ +pp_indent = force +pp_indent_count = 1 +pp_space_after = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before_after.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before_after.cfg new file mode 100644 index 00000000..94765577 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_before_after.cfg @@ -0,0 +1,4 @@ +pp_indent = force +pp_indent_count = 1 +pp_space_after = force +pp_space_count = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_none.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_none.cfg new file mode 100644 index 00000000..5287a565 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/pp_space_none.cfg @@ -0,0 +1,2 @@ +pp_indent = remove +pp_space_after = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/preproc-cleanup.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/preproc-cleanup.cfg new file mode 100644 index 00000000..4773d091 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/preproc-cleanup.cfg @@ -0,0 +1,37 @@ +# Clean up preprocessor output, ie from "gcc -E" +sp_arith = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_after_cast = remove +sp_sizeof_paren = remove +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparen = remove +sp_after_tparen_close = remove +sp_func_call_paren = remove +sp_return_paren = remove +sp_attribute_paren = remove +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +nl_enum_brace = add +nl_struct_brace = add +nl_union_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +nl_max = 4 +nl_after_func_proto_group = 2 +nl_after_func_body = 2 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_var_def_star_style = 1 +align_var_def_inline = true +align_enum_equ_span = 16 +align_var_struct_span = 99 +align_typedef_gap = 3 +align_typedef_span = 5 +mod_paren_on_return = add +pp_space_after = remove +sp_before_vardef_square = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ptr-arith.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ptr-arith.cfg new file mode 100644 index 00000000..ff1949d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/ptr-arith.cfg @@ -0,0 +1,4 @@ +sp_arith = add +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/rdan.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/rdan.cfg new file mode 100644 index 00000000..1c1b0c68 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/rdan.cfg @@ -0,0 +1,33 @@ +sp_arith = force +sp_assign = force +sp_enum_assign = force +sp_bool = force +sp_compare = force +sp_inside_paren = remove +sp_before_sparen = force +indent_columns = 3 +indent_with_tabs = 0 +indent_func_def_force_col1 = true +indent_col1_comment = true +indent_bool_paren = 1 +indent_first_bool_expr = true +nl_var_def_blk_end_func_top = 2 +nl_if_brace = force +nl_while_brace = force +nl_after_semicolon = true +nl_max = 3 +nl_after_func_proto_group = 2 +nl_after_func_body = 2 +pos_bool = lead_force +pos_compare = lead +code_width = 80 +ls_for_split_full = true +align_assign_span = 1 +align_enum_equ_span = 1 +cmt_width = 80 +cmt_star_cont = true +mod_full_paren_if_bool = true +pp_indent = add +pp_indent_at_level = true +pp_indent_count = 3 +pp_if_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-1.cfg new file mode 100644 index 00000000..996ca632 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-1.cfg @@ -0,0 +1,4 @@ +sp_inside_paren = remove +indent_columns = 4 +nl_return_expr = remove +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-2.cfg new file mode 100644 index 00000000..87b361d8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-2.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_return_expr = remove +mod_paren_on_return = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-3.cfg new file mode 100644 index 00000000..9caf1a7e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-3.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_return_expr = force +mod_paren_on_return = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-4.cfg new file mode 100644 index 00000000..9a885287 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/return-4.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +indent_columns = 4 +nl_return_expr = force +nl_before_return = true +mod_paren_on_return = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf537.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf537.cfg new file mode 100644 index 00000000..400c7e0b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf537.cfg @@ -0,0 +1,3 @@ +sp_assign = remove +sp_before_ptr_star = add +indent_columns = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf538.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf538.cfg new file mode 100644 index 00000000..8c6d149b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sf538.cfg @@ -0,0 +1,3 @@ +sp_arith = remove +sp_before_semi = force +indent_columns = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_pointer_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_pointer_star-r.cfg new file mode 100644 index 00000000..92a637a1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_pointer_star-r.cfg @@ -0,0 +1 @@ +sp_after_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-a.cfg new file mode 100644 index 00000000..bf498a46 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-a.cfg @@ -0,0 +1 @@ +sp_after_sparen = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-f.cfg new file mode 100644 index 00000000..579e9270 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-f.cfg @@ -0,0 +1 @@ +sp_after_sparen = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-i.cfg new file mode 100644 index 00000000..3bbe318b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-i.cfg @@ -0,0 +1 @@ +sp_after_sparen = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-r.cfg new file mode 100644 index 00000000..a4223a72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_after_sparen-r.cfg @@ -0,0 +1 @@ +sp_after_sparen = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-i.cfg new file mode 100644 index 00000000..146f6d61 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-i.cfg @@ -0,0 +1,4 @@ +# test for issue #3280 +sp_before_semi_for_empty = remove +sp_between_semi_for_empty = ignore +sp_after_semi_for_empty = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-r.cfg new file mode 100644 index 00000000..26dcc001 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_between_semi_for_empty-r.cfg @@ -0,0 +1,4 @@ +# test for issue #3280 +sp_before_semi_for_empty = add +sp_between_semi_for_empty = remove +sp_after_semi_for_empty = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cmt_cpp_start-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cmt_cpp_start-r.cfg new file mode 100644 index 00000000..13ceebfc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cmt_cpp_start-r.cfg @@ -0,0 +1 @@ +sp_cmt_cpp_start = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cond_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cond_colon.cfg new file mode 100644 index 00000000..d39afa14 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_cond_colon.cfg @@ -0,0 +1,6 @@ +sp_cond_colon_before = remove +sp_cond_colon_after = add +sp_cond_question_before = remove +sp_cond_question_after = force +indent_columns = 3 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-f.cfg new file mode 100644 index 00000000..68a83e91 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-f.cfg @@ -0,0 +1,2 @@ +sp_before_emb_cmt = force +sp_after_emb_cmt = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-i.cfg new file mode 100644 index 00000000..04f49ee7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-i.cfg @@ -0,0 +1,2 @@ +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-r.cfg new file mode 100644 index 00000000..f45d357b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_emb_cmt-r.cfg @@ -0,0 +1,2 @@ +sp_before_emb_cmt = remove +sp_after_emb_cmt = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-a.cfg new file mode 100644 index 00000000..ada72096 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-a.cfg @@ -0,0 +1 @@ +sp_enum_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-f.cfg new file mode 100644 index 00000000..0e358549 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-f.cfg @@ -0,0 +1 @@ +sp_enum_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-i.cfg new file mode 100644 index 00000000..f18a88b3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-i.cfg @@ -0,0 +1 @@ +sp_enum_brace = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-r.cfg new file mode 100644 index 00000000..22785029 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_enum_brace-r.cfg @@ -0,0 +1 @@ +sp_enum_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_func_call_user_inside_fparen.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_func_call_user_inside_fparen.cfg new file mode 100644 index 00000000..e5650760 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_func_call_user_inside_fparen.cfg @@ -0,0 +1,5 @@ +# Add or remove space inside user function '(' and ')' +# You need to set a keyword to be a user function, like this: 'set func_call_user _' in the config file. +sp_func_call_user_inside_fparen = force + +set FUNC_CALL_USER USER diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-a.cfg new file mode 100644 index 00000000..a21ed3da --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-a.cfg @@ -0,0 +1 @@ +sp_ptr_star_func_var = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-f.cfg new file mode 100644 index 00000000..9562f157 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-f.cfg @@ -0,0 +1 @@ +sp_ptr_star_func_var = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-i.cfg new file mode 100644 index 00000000..e18cc959 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-i.cfg @@ -0,0 +1 @@ +sp_ptr_star_func_var = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-r.cfg new file mode 100644 index 00000000..ec9bf9c0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_ptr_star_func_var-r.cfg @@ -0,0 +1 @@ +sp_ptr_star_func_var = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-a.cfg new file mode 100644 index 00000000..0d477f4d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-a.cfg @@ -0,0 +1,2 @@ +# test for issue #3209 +sp_sparen_paren = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-i.cfg new file mode 100644 index 00000000..750b77ff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/sp_sparen_paren-i.cfg @@ -0,0 +1,3 @@ +# test for issue #3209 +sp_sparen_paren = ignore +sp_paren_paren = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/space_indent_columns-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/space_indent_columns-3.cfg new file mode 100644 index 00000000..ec130371 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/space_indent_columns-3.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-0.cfg new file mode 100644 index 00000000..dd69e7f8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-0.cfg @@ -0,0 +1,12 @@ +align_var_def_star_style = 0 + +align_func_params = true +align_func_params_gap = 8 +align_func_params_span = 16 + +align_var_def_gap = 6 +align_var_def_span = 16 + +sp_after_ptr_star = remove +sp_between_ptr_star = remove + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-1.cfg new file mode 100644 index 00000000..842dc820 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-1.cfg @@ -0,0 +1,12 @@ +align_var_def_star_style = 1 + +align_func_params = true +align_func_params_gap = 8 +align_func_params_span = 16 + +align_var_def_gap = 6 +align_var_def_span = 16 + +sp_after_ptr_star = remove +sp_between_ptr_star = remove + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-2.cfg new file mode 100644 index 00000000..0165f975 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/star-style-2.cfg @@ -0,0 +1,12 @@ +align_var_def_star_style = 2 + +align_func_params = true +align_func_params_gap = 8 +align_func_params_span = 16 + +align_var_def_gap = 6 +align_var_def_span = 16 + +sp_after_ptr_star = remove +sp_between_ptr_star = remove + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/type_wrap.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/type_wrap.cfg new file mode 100644 index 00000000..eeea5786 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/type_wrap.cfg @@ -0,0 +1,3 @@ +sp_assign = force +sp_after_ptr_star = remove +set TYPE_WRAP STACK_OF
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width-3.cfg new file mode 100644 index 00000000..309db151 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width-3.cfg @@ -0,0 +1,8 @@ +# width stuff +sp_sparen_brace = add +sp_arith = force +indent_columns = 4 +indent_with_tabs = 0 +nl_if_brace = remove +code_width = 80 +ls_func_split_full = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width.cfg new file mode 100644 index 00000000..3245a35e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/width.cfg @@ -0,0 +1,8 @@ +# width stuff +sp_sparen_brace = add +sp_arith = force +indent_columns = 4 +indent_with_tabs = 0 +nl_if_brace = remove +code_width = 60 +ls_func_split_full = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/xml-str.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/xml-str.cfg new file mode 100644 index 00000000..bd667ab4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/c/xml-str.cfg @@ -0,0 +1,4 @@ +sp_assign = force +indent_columns = 3 +indent_align_string = true +indent_xml_string = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/Issue_3052.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/Issue_3052.cfg new file mode 100644 index 00000000..f7c29b8e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/Issue_3052.cfg @@ -0,0 +1,4 @@ +input_tab_size = 4 +output_tab_size = 4 +indent_columns = 4 +pp_ignore_define_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/UNI-18777.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/UNI-18777.cfg new file mode 100644 index 00000000..7d4c013e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/UNI-18777.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_align_assign = false +indent_member_single = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_call_user.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_call_user.cfg new file mode 100644 index 00000000..3219bc4b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_call_user.cfg @@ -0,0 +1,7 @@ +include "aet.cfg" + +sp_func_call_user_inside_fparen=force +sp_func_call_user_paren_paren=force + +set FUNC_CALL_USER CMD_CHECK +set FUNC_CALL_USER INTERNAL diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_def.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_def.cfg new file mode 100644 index 00000000..c4575b88 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-func_def.cfg @@ -0,0 +1,4 @@ +include "aet.cfg" + +set FUNC_DEF MACRO1 +set FUNC_DEF MACRO2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_after_oc_msg_receiver.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_after_oc_msg_receiver.cfg new file mode 100644 index 00000000..8e25aaed --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_after_oc_msg_receiver.cfg @@ -0,0 +1,3 @@ +include "aet.cfg" + +sp_after_oc_msg_receiver = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_inside_braces_oc_dict.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_inside_braces_oc_dict.cfg new file mode 100644 index 00000000..57e2463e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet-sp_inside_braces_oc_dict.cfg @@ -0,0 +1,3 @@ +include "aet.cfg" + +sp_inside_braces_oc_dict=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet.cfg new file mode 100644 index 00000000..69f104cb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/aet.cfg @@ -0,0 +1,510 @@ +# Uncrustify 0.61 +newlines = auto +input_tab_size = 4 +output_tab_size = 8 +string_escape_char = 92 +string_escape_char2 = 0 +string_replace_tab_chars = true +tok_split_gte = false +disable_processing_cmt = "*begin-nonstandard-formatting*" +enable_processing_cmt = "*end-nonstandard-formatting*" +utf8_bom = remove +utf8_byte = false +utf8_force = false +indent_columns = 4 +indent_continue = 4 +indent_with_tabs = 0 +indent_cmt_with_tabs = false +indent_align_string = false +indent_xml_string = 0 +indent_brace = 0 +indent_braces = false +indent_braces_no_func = false +indent_braces_no_class = false +indent_braces_no_struct = false +indent_brace_parent = false +indent_paren_open_brace = false +indent_namespace = false +indent_namespace_single_indent = true +indent_namespace_level = 0 +indent_namespace_limit = 0 +indent_extern = false +indent_class = true +indent_class_colon = false +indent_class_on_colon = false +indent_constr_colon = false +indent_ctor_init_leading = 2 +indent_ctor_init = 0 +indent_else_if = false +indent_var_def_blk = 0 +indent_var_def_cont = false +indent_shift = 0 +indent_func_def_force_col1 = false +indent_func_call_param = true +indent_func_def_param = true +indent_func_proto_param = true +indent_func_class_param = false +indent_func_ctor_var_param = false +indent_template_param = false +indent_func_param_double = false +indent_func_const = 0 +indent_func_throw = 0 +indent_member = 0 +indent_single_line_comments_before = 0 +indent_relative_single_line_comments = true +indent_switch_case = 0 +indent_case_shift = 0 +indent_case_brace = 0 +indent_col1_comment = false +indent_label = -4 +indent_access_spec = -4 +indent_access_spec_body = false +indent_paren_nl = false +indent_paren_close = 0 +indent_comma_paren = 0 +indent_bool_paren = 0 +indent_first_bool_expr = false +indent_square_nl = false +indent_preserve_sql = false +indent_align_assign = false +indent_oc_block = false +indent_oc_block_msg = 0 +indent_oc_msg_colon = 0 +indent_oc_msg_prioritize_first_colon = true +indent_oc_block_msg_xcode_style = true +indent_oc_block_msg_from_keyword = false +indent_oc_block_msg_from_colon = false +indent_oc_block_msg_from_caret = false +indent_oc_block_msg_from_brace = false +indent_min_vbrace_open = 0 +indent_vbrace_open_on_tabstop = false +sp_arith = force +sp_assign = add +sp_cpp_lambda_assign = ignore +sp_cpp_lambda_square_paren = ignore +sp_assign_default = add +sp_before_assign = force +sp_after_assign = force +sp_enum_paren = ignore +sp_enum_assign = add +sp_enum_before_assign = ignore +sp_enum_after_assign = ignore +sp_pp_concat = remove +sp_pp_stringify = remove +sp_before_pp_stringify = ignore +sp_bool = add +sp_compare = add +sp_inside_paren = remove +sp_paren_paren = remove +sp_cparen_oparen = ignore +sp_balance_nested_parens = false +sp_paren_brace = force +sp_before_ptr_star = force +sp_before_unnamed_ptr_star = ignore +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove +sp_after_ptr_star_func = remove +sp_ptr_star_func_type = remove +sp_ptr_star_paren = remove +sp_before_ptr_star_func = force +sp_before_byref = remove +sp_before_unnamed_byref = remove +sp_after_byref = force +sp_after_byref_func = force +sp_before_byref_func = remove +sp_after_type = force +sp_after_decltype = force +sp_before_template_paren = ignore +sp_template_angle = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_after_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_angle_shift = remove +sp_permit_cpp11_shift = false +sp_before_sparen = force +sp_inside_sparen = remove +sp_inside_sparen_close = ignore +sp_inside_sparen_open = ignore +sp_after_sparen = add +sp_sparen_brace = force +sp_invariant_paren = ignore +sp_after_invariant_paren = ignore +sp_special_semi = force +sp_before_semi = remove +sp_before_semi_for = remove +sp_before_semi_for_empty = remove +sp_between_semi_for_empty = remove +sp_after_semi = force +sp_after_semi_for = force +sp_after_semi_for_empty = remove +sp_before_square = remove +sp_before_squares = remove +sp_inside_square = remove +sp_after_comma = add +sp_before_comma = remove +sp_after_mdatype_commas = remove +sp_before_mdatype_commas = remove +sp_between_mdatype_commas = remove +sp_paren_comma = remove +sp_before_ellipsis = ignore +sp_after_class_colon = force +sp_before_class_colon = force +sp_after_constr_colon = ignore +sp_before_constr_colon = ignore +sp_before_case_colon = remove +sp_after_operator = ignore +sp_after_operator_sym = ignore +sp_after_cast = force +sp_inside_paren_cast = remove +sp_cpp_cast_paren = remove +sp_sizeof_paren = remove +sp_decltype_paren = remove +sp_after_tag = ignore +sp_inside_braces_enum = add +sp_inside_braces_struct = ignore +sp_inside_braces = ignore +sp_inside_braces_empty = remove +sp_type_func = force +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_inside_tparen = remove +sp_after_tparen_close = remove +sp_square_fparen = ignore +sp_fparen_brace = force +sp_fparen_dbrace = ignore +sp_func_call_paren = remove +sp_func_call_paren_empty = remove +sp_func_call_user_paren = remove +sp_func_class_paren = remove +sp_return_paren = add +sp_attribute_paren = ignore +sp_defined_paren = remove +sp_throw_paren = add +sp_after_throw = ignore +sp_catch_paren = add +sp_version_paren = ignore +sp_scope_paren = ignore +sp_macro = ignore +sp_macro_func = ignore +sp_else_brace = force +sp_brace_else = force +sp_brace_typedef = add +sp_catch_brace = force +sp_brace_catch = force +sp_finally_brace = force +sp_brace_finally = force +sp_try_brace = force +sp_getset_brace = add +sp_word_brace_init_lst = add +sp_word_brace_ns = add +sp_before_dc = remove +sp_after_dc = remove +sp_d_array_colon = ignore +sp_not = remove +sp_inv = remove +sp_addr = remove +sp_member = remove +sp_deref = remove +sp_sign = remove +sp_incdec = remove +sp_before_nl_cont = add +sp_after_oc_scope = force +sp_after_oc_colon = remove +sp_before_oc_colon = remove +sp_after_oc_dict_colon = force +sp_before_oc_dict_colon = remove +sp_after_send_oc_colon = remove +sp_before_send_oc_colon = remove +sp_after_oc_type = remove +sp_after_oc_return_type = remove +sp_after_oc_at_sel = remove +sp_after_oc_at_sel_parens = force +sp_inside_oc_at_sel_parens = remove +sp_before_oc_block_caret = remove +sp_after_oc_block_caret = remove +sp_after_oc_msg_receiver = force +sp_after_oc_property = force +sp_cond_colon = add +sp_cond_colon_before = ignore +sp_cond_colon_after = ignore +sp_cond_question = add +sp_cond_question_before = ignore +sp_cond_question_after = ignore +sp_cond_ternary_short = ignore +sp_case_label = force +sp_range = ignore +sp_after_for_colon = force +sp_before_for_colon = force +sp_extern_paren = ignore +sp_cmt_cpp_start = ignore +sp_cmt_cpp_doxygen = false +sp_endif_cmt = ignore +sp_after_new = force +sp_between_new_paren = remove +sp_before_tr_cmt = ignore +sp_num_before_tr_cmt = 0 +sp_annotation_paren = remove +align_keep_tabs = false +align_with_tabs = false +align_on_tabstop = false +align_number_right = false +align_keep_extra_space = false +align_func_params = false +align_same_func_call_params = false +align_var_def_span = 0 +align_var_def_star_style = 0 +align_var_def_amp_style = 0 +align_var_def_thresh = 0 +align_var_def_gap = 0 +align_var_def_colon = false +align_var_def_attribute = false +align_var_def_inline = false +align_assign_span = 0 +align_assign_thresh = 0 +align_enum_equ_span = 0 +align_enum_equ_thresh = 0 +align_var_struct_span = 0 +align_var_struct_thresh = 0 +align_var_struct_gap = 0 +align_struct_init_span = 0 +align_typedef_gap = 0 +align_typedef_span = 0 +align_typedef_func = 0 +align_typedef_star_style = 0 +align_typedef_amp_style = 0 +align_right_cmt_span = 0 +align_right_cmt_mix = false +align_right_cmt_gap = 0 +align_right_cmt_at_col = 0 +align_func_proto_span = 0 +align_func_proto_gap = 0 +align_on_operator = false +align_mix_var_proto = false +align_single_line_func = false +align_single_line_brace = false +align_single_line_brace_gap = 0 +align_oc_msg_spec_span = 0 +align_nl_cont = 0 +align_pp_define_together = false +align_pp_define_gap = 0 +align_pp_define_span = 0 +align_left_shift = false +align_oc_msg_colon_span = 20 +align_oc_msg_colon_first = true +align_oc_decl_colon = true +nl_collapse_empty_body = false +nl_assign_leave_one_liners = true +nl_class_leave_one_liners = true +nl_enum_leave_one_liners = true +nl_getset_leave_one_liners = true +nl_func_leave_one_liners = true +nl_cpp_lambda_leave_one_liners = true +nl_if_leave_one_liners = true +nl_oc_msg_leave_one_liner = true +nl_start_of_file = remove +nl_start_of_file_min = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_assign_brace = remove +nl_assign_square = ignore +nl_after_square_assign = ignore +nl_var_def_blk_end_func_top = 0 +nl_typedef_blk_start = 0 +nl_typedef_blk_end = 0 +nl_typedef_blk_in = 0 +nl_var_def_blk_start = 0 +nl_var_def_blk_end = 0 +nl_var_def_blk_in = 0 +nl_fcall_brace = ignore +nl_enum_brace = remove +nl_struct_brace = remove +nl_union_brace = remove +nl_if_brace = remove +nl_brace_else = remove +nl_elseif_brace = ignore +nl_else_brace = remove +nl_else_if = remove +nl_brace_finally = remove +nl_finally_brace = remove +nl_try_brace = remove +nl_getset_brace = remove +nl_for_brace = remove +nl_catch_brace = remove +nl_brace_catch = remove +nl_brace_square = ignore +nl_brace_fparen = ignore +nl_while_brace = remove +nl_scope_brace = ignore +nl_unittest_brace = ignore +nl_version_brace = ignore +nl_using_brace = remove +nl_brace_brace = ignore +nl_do_brace = remove +nl_brace_while = remove +nl_switch_brace = remove +nl_multi_line_cond = false +nl_multi_line_define = false +nl_before_case = false +nl_before_throw = ignore +nl_after_case = false +nl_case_colon_brace = remove +nl_namespace_brace = remove +nl_template_class = ignore +nl_class_brace = remove +nl_class_init_args = ignore +nl_constr_init_args = ignore +nl_func_type_name = ignore +nl_func_type_name_class = ignore +nl_func_scope_name = ignore +nl_func_proto_type_name = ignore +nl_func_paren = ignore +nl_func_def_paren = ignore +nl_func_decl_start = ignore +nl_func_def_start = ignore +nl_func_decl_start_single = ignore +nl_func_def_start_single = ignore +nl_func_decl_args = ignore +nl_func_def_args = ignore +nl_func_decl_end = ignore +nl_func_def_end = ignore +nl_func_decl_end_single = ignore +nl_func_def_end_single = ignore +nl_func_decl_empty = ignore +nl_func_def_empty = ignore +nl_oc_msg_args = false +nl_fdef_brace = remove +nl_cpp_ldef_brace = ignore +nl_return_expr = ignore +nl_after_semicolon = false +nl_paren_dbrace_open = ignore +nl_after_brace_open = false +nl_after_brace_open_cmt = false +nl_after_vbrace_open = false +nl_after_vbrace_open_empty = false +nl_after_brace_close = false +nl_after_vbrace_close = false +nl_brace_struct_var = ignore +nl_define_macro = false +nl_squeeze_ifdef = false +nl_before_if = ignore +nl_after_if = ignore +nl_before_for = ignore +nl_after_for = ignore +nl_before_while = ignore +nl_after_while = ignore +nl_before_switch = ignore +nl_after_switch = ignore +nl_before_do = ignore +nl_after_do = ignore +nl_ds_struct_enum_cmt = false +nl_ds_struct_enum_close_brace = false +nl_class_colon = ignore +nl_constr_colon = ignore +nl_create_if_one_liner = false +nl_create_for_one_liner = false +nl_create_while_one_liner = false +pos_arith = ignore +pos_assign = ignore +pos_bool = ignore +pos_compare = ignore +pos_conditional = ignore +pos_comma = ignore +pos_class_comma = ignore +pos_constr_comma = ignore +pos_class_colon = ignore +pos_constr_colon = ignore +code_width = 0 +ls_for_split_full = false +ls_func_split_full = false +ls_code_width = false +nl_max = 3 +nl_after_func_proto = 0 +nl_after_func_proto_group = 0 +nl_after_func_body = 2 +nl_after_func_body_class = 0 +nl_after_func_body_one_liner = 0 +nl_before_block_comment = 0 +nl_before_c_comment = 0 +nl_before_cpp_comment = 0 +nl_after_multiline_comment = false +nl_after_label_colon = false +nl_after_struct = 0 +nl_after_class = 0 +nl_before_access_spec = 0 +nl_after_access_spec = 0 +nl_comment_func_def = 0 +nl_after_try_catch_finally = 0 +nl_around_cs_property = 0 +nl_between_get_set = 0 +nl_property_brace = force +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +nl_remove_extra_newlines = 0 +nl_before_return = false +nl_after_return = false +nl_after_annotation = ignore +nl_between_annotation = ignore +mod_full_brace_do = ignore +mod_full_brace_for = ignore +mod_full_brace_function = ignore +mod_full_brace_if = ignore +mod_full_brace_if_chain = 0 +mod_full_brace_nl = 0 +mod_full_brace_while = ignore +mod_full_brace_using = ignore +mod_paren_on_return = ignore +mod_pawn_semicolon = false +mod_full_paren_if_bool = false +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 0 +mod_add_long_namespace_closebrace_comment = 0 +mod_add_long_switch_closebrace_comment = 0 +mod_add_long_ifdef_endif_comment = 0 +mod_add_long_ifdef_else_comment = 0 +mod_sort_import = false +mod_sort_using = false +mod_sort_include = false +mod_move_case_break = false +mod_case_brace = ignore +mod_remove_empty_return = true +cmt_width = 0 +cmt_reflow_mode = 0 +cmt_convert_tab_to_spaces = false +cmt_indent_multi = false +cmt_c_group = false +cmt_c_nl_start = false +cmt_c_nl_end = false +cmt_cpp_group = false +cmt_cpp_nl_start = false +cmt_cpp_nl_end = false +cmt_cpp_to_c = false +cmt_star_cont = false +cmt_sp_before_star_cont = 0 +cmt_sp_after_star_cont = 0 +cmt_multi_check_last = false +cmt_insert_file_header = "" +cmt_insert_file_footer = "" +cmt_insert_func_header = "" +cmt_insert_class_header = "" +cmt_insert_oc_msg_header = "" +cmt_insert_before_preproc = false +pp_indent = ignore +pp_indent_at_level = false +pp_indent_count = 1 +pp_space_after = ignore +pp_space_count = 0 +pp_indent_region = 0 +pp_region_indent_code = false +pp_indent_if = 0 +pp_if_indent_code = false +pp_define_at_level = false +pp_multiline_define_body_indent = 4 + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align-1.cfg new file mode 100644 index 00000000..720f003e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align-1.cfg @@ -0,0 +1,7 @@ +indent_columns = 3 +nl_struct_brace = add +align_var_def_span = 2 +align_var_def_colon = true +align_assign_span = 2 +align_assign_thresh = 3 +align_var_struct_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align_same_func_call_params-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align_same_func_call_params-t.cfg new file mode 100644 index 00000000..d1496108 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/align_same_func_call_params-t.cfg @@ -0,0 +1 @@ +align_same_func_call_params = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/attribute_specifier_seqs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/attribute_specifier_seqs.cfg new file mode 100644 index 00000000..3a7f6096 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/attribute_specifier_seqs.cfg @@ -0,0 +1,3 @@ +sp_before_vardef_square = ignore +sp_type_brace_init_lst = remove +indent_continue_class_head = 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben2.cfg new file mode 100644 index 00000000..fd376dac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben2.cfg @@ -0,0 +1,45 @@ +utf8_byte = true +sp_arith = force +sp_assign = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_before_sparen = force +sp_after_comma = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +sp_cond_colon = add +sp_cond_question = add +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +indent_label = 2 +nl_assign_brace = add +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_switch_brace = add +nl_before_case = true +nl_fdef_brace = add +eat_blanks_after_open_brace = true +nl_after_return = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_struct_init_span = 3 +cmt_convert_tab_to_spaces = true +cmt_star_cont = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 40 +mod_add_long_switch_closebrace_comment = 40 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_011.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_011.cfg new file mode 100644 index 00000000..6ade29ad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_011.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_042.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_042.cfg new file mode 100644 index 00000000..c98cdf54 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/ben_042.cfg @@ -0,0 +1,2 @@ +align_pp_define_gap = 4 +align_pp_define_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bool-pos-eol-force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bool-pos-eol-force.cfg new file mode 100644 index 00000000..51044559 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bool-pos-eol-force.cfg @@ -0,0 +1,4 @@ +# moves boolean ops to the end of line +indent_columns = 3 +pos_bool = trail_force +pos_comma = trail_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/brace-allman.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/brace-allman.cfg new file mode 100644 index 00000000..0e903302 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/brace-allman.cfg @@ -0,0 +1,5 @@ +# Allman style +indent_with_tabs = 0 +nl_fcall_brace = add +nl_if_brace = add +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_637.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_637.cfg new file mode 100644 index 00000000..c9b9afbf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_637.cfg @@ -0,0 +1,3 @@ +# test for bug # 637 +sp_before_semi = force +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_671.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_671.cfg new file mode 100644 index 00000000..00c0cf36 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/bug_671.cfg @@ -0,0 +1,8 @@ +sp_before_ptr_star = remove +sp_after_ptr_star = add +sp_inside_square = add +sp_inside_fparen = add +indent_columns = 4 +nl_func_type_name = add +align_func_params = true +align_var_def_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.cfg new file mode 100644 index 00000000..e3325392 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.cfg @@ -0,0 +1,39 @@ +input_tab_size = 2 +sp_arith = add +sp_assign = add +sp_compare = add +sp_before_sparen = add +sp_inside_sparen = remove +sp_inside_for = remove +sp_after_comma = add +sp_inside_braces = force +sp_cond_colon = add +sp_cond_question = add +indent_columns = 2 +indent_switch_body = 2 +indent_with_tabs = 0 +indent_braces = true +indent_single_line_comments_before = 2 +indent_switch_case = 2 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_brace_while = add +nl_switch_brace = add +nl_before_case = true +nl_before_if = force +nl_after_if = force +nl_before_for = force +nl_after_for = force +nl_before_while = force +nl_after_while = force +nl_before_switch = force +nl_after_switch = force +nl_before_do = force +nl_after_func_body = 2 +mod_full_brace_for = remove +mod_full_brace_if = remove +mod_full_brace_nl = 3 +mod_full_brace_while = remove +mod_paren_on_return = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.rerun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.rerun.cfg new file mode 100644 index 00000000..3b33c7d6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/clark.rerun.cfg @@ -0,0 +1 @@ +include "clark.cfg" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/class-header.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/class-header.h new file mode 100644 index 00000000..32e68a34 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/class-header.h @@ -0,0 +1,4 @@ +/** + * CLASS: $(class) + * TODO: DESCRIPTION + */ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-0.cfg new file mode 100644 index 00000000..86d05f95 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-0.cfg @@ -0,0 +1,6 @@ +cmt_insert_file_header = "file-header.h" +cmt_insert_func_header = "func-header.h" +cmt_insert_class_header = "class-header.h" +cmt_insert_oc_msg_header = "msg-header.h" +cmt_insert_before_preproc = true +cmt_insert_before_inlines = false
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-1.cfg new file mode 100644 index 00000000..91dbf03a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/cmt_insert-1.cfg @@ -0,0 +1,6 @@ +cmt_insert_file_header = "file-header.h" +cmt_insert_func_header = "func-header.h" +cmt_insert_class_header = "class-header.h" +cmt_insert_oc_msg_header = "msg-header.h" +cmt_insert_before_preproc = true +cmt_insert_before_ctor_dtor = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/d.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/d.cfg new file mode 100644 index 00000000..953964d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/d.cfg @@ -0,0 +1,51 @@ +sp_before_semi_for = remove +sp_arith = force +sp_assign = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_before_sparen = force +sp_inside_rparen = remove +sp_inside_sparen = remove +sp_inside_for = remove +sp_before_square = remove +sp_before_squares = remove +sp_after_comma = force +sp_after_cast = remove +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_range = force +sp_while_paren_open = force +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_case_brace = 4 +indent_label = 2 +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_end = 1 +nl_enum_brace = add +nl_if_brace = add +nl_else_brace = add +nl_else_if = remove +nl_for_brace = add +nl_before_case = true +nl_fdef_brace = add +nl_after_brace_open = true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +nl_after_return = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_enum_equ_span = 4 +align_var_class_span = 2 +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_star_style = 1 +align_right_cmt_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/del_semicolon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/del_semicolon.cfg new file mode 100644 index 00000000..13434168 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/del_semicolon.cfg @@ -0,0 +1,2 @@ +sp_after_semi_for = remove +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/empty.cfg new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/empty.cfg diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file-header.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file-header.h new file mode 100644 index 00000000..63fb5185 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file-header.h @@ -0,0 +1,6 @@ +/** + * @file $(filename) + * Description + * + * $Id$ + */ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_footer.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_footer.txt new file mode 100644 index 00000000..7ce80bad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_footer.txt @@ -0,0 +1,6 @@ +/**
+ * CVS History:
+ * $Log $
+ *
+ */
+
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_header.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_header.txt new file mode 100644 index 00000000..5431d0ff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/file_header.txt @@ -0,0 +1,7 @@ +/*******************************************************************************//**
+ *
+ * @file $(filename)
+ *
+ * <Description>
+ *
+ ***********************************************************************************/
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-1.cfg new file mode 100644 index 00000000..14879a94 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-1.cfg @@ -0,0 +1,10 @@ +sp_before_ptr_star = force +indent_columns = 3 +nl_func_type_name = add +nl_func_proto_type_name = add +nl_func_decl_start = add +nl_func_def_start = add +nl_func_decl_args = add +nl_func_def_args = add +nl_func_decl_end = add +nl_func_def_end = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-2.cfg new file mode 100644 index 00000000..f9cf836c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-2.cfg @@ -0,0 +1,5 @@ +sp_before_ptr_star = force +indent_columns = 3 +nl_func_type_name = add +nl_func_proto_type_name = remove +nl_func_decl_end = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-3.cfg new file mode 100644 index 00000000..c868ae02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-def-3.cfg @@ -0,0 +1,6 @@ +sp_before_ptr_star = force +indent_columns = 3 +nl_func_type_name = remove +nl_func_proto_type_name = remove +nl_func_decl_args = remove +nl_func_decl_end = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header.h new file mode 100644 index 00000000..e6f83943 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header.h @@ -0,0 +1,5 @@ +/** + * $(function) + * TODO: DESCRIPTION + * $(javaparam) + */ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header2.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header2.h new file mode 100644 index 00000000..52bdf970 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/func-header2.h @@ -0,0 +1,6 @@ +/** + * CLASS: $(fclass) + * METHOD: $(function) + * TODO: DESCRIPTION + * $(javaparam) + */ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/function_header.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/function_header.txt new file mode 100644 index 00000000..c6508a02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/function_header.txt @@ -0,0 +1,9 @@ +/***********************************************************************************
+ * $(function)
+ *******************************************************************************//**
+ *
+ * <Description>
+ *
+ * $(javaparam)
+ *
+ **********************************************************************************/
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_columns-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_columns-3.cfg new file mode 100644 index 00000000..d49cfc22 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_columns-3.cfg @@ -0,0 +1,7 @@ +indent_columns = 3 + +# Add or remove space around the ':' in 'b ? t : f'. +# Добавить или удалить пробел вокруг ':' в операторе 'b ? t : f'. +sp_cond_colon = add # 只是一组象形文字 + +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_continue-8.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_continue-8.cfg new file mode 100644 index 00000000..9bc69559 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_continue-8.cfg @@ -0,0 +1 @@ +indent_continue = 8
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_inside_ternary_operator.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_inside_ternary_operator.cfg new file mode 100644 index 00000000..ad5f98ed --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_inside_ternary_operator.cfg @@ -0,0 +1,5 @@ +indent_align_paren = false +pos_conditional = lead +nl_func_call_args_multi_line_ignore_closures = true +indent_ternary_operator = 0 +indent_inside_ternary_operator = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-1.cfg new file mode 100644 index 00000000..80ea4e7a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-1.cfg @@ -0,0 +1 @@ +indent_ternary_operator = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-2.cfg new file mode 100644 index 00000000..1d5a91ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_ternary_operator-2.cfg @@ -0,0 +1 @@ +indent_ternary_operator = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_var_def.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_var_def.cfg new file mode 100644 index 00000000..4345ee72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/indent_var_def.cfg @@ -0,0 +1,11 @@ +sp_assign = force +indent_columns = 3 +indent_class = true +indent_var_def_blk = -3 +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_end = 1 +nl_fdef_brace = add +align_var_def_span = 1 +align_assign_span = 1 +align_assign_thresh = 12 +align_var_class_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/issue_672.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/issue_672.cfg new file mode 100644 index 00000000..fb436753 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/issue_672.cfg @@ -0,0 +1,5 @@ +indent_columns = 4
+indent_continue = 16
+indent_continue_class_head = 16
+indent_class = true
+code_width = 80
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst.cfg new file mode 100644 index 00000000..163d6f64 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst.cfg @@ -0,0 +1,5 @@ +indent_namespace = true +cmt_insert_file_header = "file-header.h" +cmt_insert_func_header = "func-header.h" +cmt_insert_class_header = "class-header.h" +cmt_insert_before_preproc = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst2.cfg new file mode 100644 index 00000000..7f531264 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst2.cfg @@ -0,0 +1,3 @@ +cmt_insert_file_header = "file-header.h" +cmt_insert_func_header = "func-header2.h" +cmt_insert_class_header = "class-header.h"
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst3.cfg new file mode 100644 index 00000000..1b4018f6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst3.cfg @@ -0,0 +1,71 @@ +input_tab_size = 4 +output_tab_size = 4 +sp_arith = add +sp_assign = add +sp_enum_assign = add +sp_bool = add +sp_compare = add +sp_before_sparen = add +sp_inside_sparen = remove +sp_after_sparen = add +sp_sparen_brace = add +sp_special_semi = add +sp_after_comma = add +sp_sizeof_paren = remove +sp_type_func = add +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_else_brace = add +sp_after_ptr_star_func = force +indent_columns = 4 +indent_with_tabs = 0 +indent_switch_case = 4 +nl_end_of_file = add +nl_end_of_file_min = 1 +nl_assign_brace = add +nl_var_def_blk_end_func_top = 1 +nl_enum_brace = add +nl_struct_brace = add +nl_union_brace = add +nl_if_brace = add +nl_brace_else = add +nl_elseif_brace = add +nl_else_brace = add +nl_for_brace = add +nl_while_brace = add +nl_do_brace = add +nl_switch_brace = add +nl_before_case = true +nl_after_case = true +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +nl_after_brace_open_cmt = true +nl_after_func_proto_group = 4 +nl_after_func_body = 4 +nl_after_func_body_one_liner = 4 +nl_after_return = true +align_var_def_span = 10 +align_var_def_star_style = 1 +align_var_def_amp_style = 1 +align_var_def_colon = true +align_assign_span = 10 +align_assign_thresh = 4 +align_enum_equ_span = 10 +cmt_sp_before_star_cont = 1 +cmt_insert_file_header = "file_header.txt" +cmt_insert_file_footer = "file_footer.txt" +cmt_insert_func_header = "function_header.txt" +mod_full_brace_do = add +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add +mod_remove_extra_semicolon = true +mod_add_long_function_closebrace_comment = 50 +mod_add_long_switch_closebrace_comment = 50 +pp_indent_at_level = true +pp_if_indent_code = true +pp_define_at_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst4.cfg new file mode 100644 index 00000000..a269bdf8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/kw_subst4.cfg @@ -0,0 +1,4 @@ +cmt_indent_multi = false +cmt_insert_file_header = "file-header.h" +cmt_insert_func_header = "func-header2.h" +cmt_insert_class_header = "class-header.h" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_case_brace_rm.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_case_brace_rm.cfg new file mode 100644 index 00000000..51252b69 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_case_brace_rm.cfg @@ -0,0 +1,7 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_case_brace = 3 +nl_switch_brace = add +nl_before_case = true +nl_after_case = true +mod_case_brace = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_full_brace_if_chain_only-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_full_brace_if_chain_only-t.cfg new file mode 100644 index 00000000..fef2fdfb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_full_brace_if_chain_only-t.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +mod_full_brace_if_chain_only = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-a.cfg new file mode 100644 index 00000000..6e5a38ec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-a.cfg @@ -0,0 +1 @@ +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-r.cfg new file mode 100644 index 00000000..fb547f72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/mod_paren_on_return-r.cfg @@ -0,0 +1 @@ +mod_paren_on_return = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/msg-header.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/msg-header.h new file mode 100644 index 00000000..79a0919f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/msg-header.h @@ -0,0 +1,5 @@ +/** + * $(scope)[$(class)$(category) $(message)] + * + * $(javaparam) + */ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/neovim.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/neovim.cfg new file mode 100644 index 00000000..cd61531b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/neovim.cfg @@ -0,0 +1,3667 @@ +# Uncrustify-0.77.1_f + +# +# General options +# + +# The type of line endings. +# +# Default: auto +newlines = lf # lf/crlf/cr/auto + +# The original size of tabs in the input. +# +# Default: 8 +input_tab_size = 8 # unsigned number + +# The size of tabs in the output (only used if align_with_tabs=true). +# +# Default: 8 +output_tab_size = 8 # unsigned number + +# The ASCII value of the string escape char, usually 92 (\) or (Pawn) 94 (^). +# +# Default: 92 +string_escape_char = 92 # unsigned number + +# Alternate string escape char (usually only used for Pawn). +# Only works right before the quote char. +string_escape_char2 = 0 # unsigned number + +# Replace tab characters found in string literals with the escape sequence \t +# instead. +string_replace_tab_chars = false # true/false + +# Allow interpreting '>=' and '>>=' as part of a template in code like +# 'void f(list<list<B>>=val);'. If true, 'assert(x<0 && y>=3)' will be broken. +# Improvements to template detection may make this option obsolete. +tok_split_gte = false # true/false + +# Disable formatting of NL_CONT ('\\n') ended lines (e.g. multi-line macros). +disable_processing_nl_cont = false # true/false + +# Specify the marker used in comments to disable processing of part of the +# file. +# +# Default: *INDENT-OFF* +disable_processing_cmt = "uncrustify:off" # string + +# Specify the marker used in comments to (re)enable processing in a file. +# +# Default: *INDENT-ON* +enable_processing_cmt = "uncrustify:on" # string + +# Enable parsing of digraphs. +enable_digraphs = false # true/false + +# Option to allow both disable_processing_cmt and enable_processing_cmt +# strings, if specified, to be interpreted as ECMAScript regular expressions. +# If true, a regex search will be performed within comments according to the +# specified patterns in order to disable/enable processing. +processing_cmt_as_regex = false # true/false + +# Add or remove the UTF-8 BOM (recommend 'remove'). +utf8_bom = remove # ignore/add/remove/force/not_defined + +# If the file contains bytes with values between 128 and 255, but is not +# UTF-8, then output as UTF-8. +utf8_byte = false # true/false + +# Force the output encoding to UTF-8. +utf8_force = false # true/false + +# +# Spacing options +# + +# Add or remove space around non-assignment symbolic operators ('+', '/', '%', +# '<<', and so forth). +sp_arith = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around arithmetic operators '+' and '-'. +# +# Overrides sp_arith. +sp_arith_additive = force # ignore/add/remove/force/not_defined + +# Add or remove space around assignment operator '=', '+=', etc. +sp_assign = force # ignore/add/remove/force/not_defined + +# Add or remove space around '=' in C++11 lambda capture specifications. +# +# Overrides sp_assign. +sp_cpp_lambda_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the capture specification of a C++11 lambda when +# an argument list is present, as in '[] <here> (int x){ ... }'. +sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the capture specification of a C++11 lambda with +# no argument list is present, as in '[] <here> { ... }'. +sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the opening parenthesis and before the closing +# parenthesis of a argument list of a C++11 lambda, as in +# '[]( <here> int x <here> ){ ... }'. +sp_cpp_lambda_argument_list = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the argument list of a C++11 lambda, as in +# '[](int x) <here> { ... }'. +sp_cpp_lambda_paren_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a lambda body and its call operator of an +# immediately invoked lambda, as in '[]( ... ){ ... } <here> ( ... )'. +sp_cpp_lambda_fparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around assignment operator '=' in a prototype. +# +# If set to ignore, use sp_assign. +sp_assign_default = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before assignment operator '=', '+=', etc. +# +# Overrides sp_assign. +sp_before_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after assignment operator '=', '+=', etc. +# +# Overrides sp_assign. +sp_after_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove space in 'enum {'. +# +# Default: add +sp_enum_brace = force # ignore/add/remove/force/not_defined + +# Add or remove space in 'NS_ENUM ('. +sp_enum_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around assignment '=' in enum. +sp_enum_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before assignment '=' in enum. +# +# Overrides sp_enum_assign. +sp_enum_before_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after assignment '=' in enum. +# +# Overrides sp_enum_assign. +sp_enum_after_assign = force # ignore/add/remove/force/not_defined + +# Add or remove space around assignment ':' in enum. +sp_enum_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around preprocessor '##' concatenation operator. +# +# Default: add +sp_pp_concat = remove # ignore/add/remove/force/not_defined + +# Add or remove space after preprocessor '#' stringify operator. +# Also affects the '#@' charizing operator. +sp_pp_stringify = remove # ignore/add/remove/force/not_defined + +# Add or remove space before preprocessor '#' stringify operator +# as in '#define x(y) L#y'. +sp_before_pp_stringify = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around boolean operators '&&' and '||'. +sp_bool = force # ignore/add/remove/force/not_defined + +# Add or remove space around compare operator '<', '>', '==', etc. +sp_compare = force # ignore/add/remove/force/not_defined + +# Add or remove space inside '(' and ')'. +sp_inside_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between nested parentheses, i.e. '((' vs. ') )'. +sp_paren_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('. +sp_cparen_oparen = remove # ignore/add/remove/force/not_defined + +# Whether to balance spaces inside nested parentheses. +sp_balance_nested_parens = false # true/false + +# Add or remove space between ')' and '{'. +sp_paren_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between nested braces, i.e. '{{' vs. '{ {'. +sp_brace_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before pointer star '*'. +sp_before_ptr_star = force # ignore/add/remove/force/not_defined + +# Add or remove space before pointer star '*' that isn't followed by a +# variable name. If set to ignore, sp_before_ptr_star is used instead. +sp_before_unnamed_ptr_star = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a qualifier and a pointer star '*' that isn't +# followed by a variable name, as in '(char const *)'. If set to ignore, +# sp_before_ptr_star is used instead. +sp_qualifier_unnamed_ptr_star = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between pointer stars '*', as in 'int ***a;'. +sp_between_ptr_star = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after pointer star '*', if followed by a word. +# +# Overrides sp_type_func. +sp_after_ptr_star = remove # ignore/add/remove/force/not_defined + +# Add or remove space after pointer caret '^', if followed by a word. +sp_after_ptr_block_caret = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after pointer star '*', if followed by a qualifier. +sp_after_ptr_star_qualifier = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after a pointer star '*', if followed by a function +# prototype or function definition. +# +# Overrides sp_after_ptr_star and sp_type_func. +sp_after_ptr_star_func = remove # ignore/add/remove/force/not_defined + +# Add or remove space after a pointer star '*' in the trailing return of a +# function prototype or function definition. +sp_after_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between the pointer star '*' and the name of the variable +# in a function pointer definition. +sp_ptr_star_func_var = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between the pointer star '*' and the name of the type +# in a function pointer type definition. +sp_ptr_star_func_type = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after a pointer star '*', if followed by an open +# parenthesis, as in 'void* (*)()'. +sp_ptr_star_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a pointer star '*', if followed by a function +# prototype or function definition. If set to ignore, sp_before_ptr_star is +# used instead. +sp_before_ptr_star_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a qualifier and a pointer star '*' followed by +# the name of the function in a function prototype or definition, as in +# 'char const *foo()`. If set to ignore, sp_before_ptr_star is used instead. +sp_qualifier_ptr_star_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a pointer star '*' in the trailing return of a +# function prototype or function definition. +sp_before_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a qualifier and a pointer star '*' in the +# trailing return of a function prototype or function definition, as in +# 'auto foo() -> char const *'. +sp_qualifier_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a reference sign '&'. +sp_before_byref = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a reference sign '&' that isn't followed by a +# variable name. If set to ignore, sp_before_byref is used instead. +sp_before_unnamed_byref = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after reference sign '&', if followed by a word. +# +# Overrides sp_type_func. +sp_after_byref = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after a reference sign '&', if followed by a function +# prototype or function definition. +# +# Overrides sp_after_byref and sp_type_func. +sp_after_byref_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a reference sign '&', if followed by a function +# prototype or function definition. +sp_before_byref_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after a reference sign '&', if followed by an open +# parenthesis, as in 'char& (*)()'. +sp_byref_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between type and word. In cases where total removal of +# whitespace would be a syntax error, a value of 'remove' is treated the same +# as 'force'. +# +# This also affects some other instances of space following a type that are +# not covered by other options; for example, between the return type and +# parenthesis of a function type template argument, between the type and +# parenthesis of an array parameter, or between 'decltype(...)' and the +# following word. +# +# Default: force +sp_after_type = force # ignore/add/remove/force/not_defined + +# Add or remove space between 'decltype(...)' and word, +# brace or function call. +sp_after_decltype = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space before the parenthesis in the D constructs +# 'template Foo(' and 'class Foo('. +sp_before_template_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'template' and '<'. +# If set to ignore, sp_before_angle is used. +sp_template_angle = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before '<'. +sp_before_angle = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside '<' and '>'. +sp_inside_angle = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside '<>'. +sp_inside_angle_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '>' and ':'. +sp_angle_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after '>'. +sp_after_angle = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '>' and '(' as found in 'new List<byte>(foo);'. +sp_angle_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '>' and '()' as found in 'new List<byte>();'. +sp_angle_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '>' and a word as in 'List<byte> m;' or +# 'template <typename T> static ...'. +sp_angle_word = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '>' and '>' in '>>' (template stuff). +# +# Default: add +sp_angle_shift = add # ignore/add/remove/force/not_defined + +# (C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note +# that sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = false # true/false + +# Add or remove space before '(' of control statements ('if', 'for', 'switch', +# 'while', etc.). +sp_before_sparen = force # ignore/add/remove/force/not_defined + +# Add or remove space inside '(' and ')' of control statements other than +# 'for'. +sp_inside_sparen = remove # ignore/add/remove/force/not_defined + +# Add or remove space after '(' of control statements other than 'for'. +# +# Overrides sp_inside_sparen. +sp_inside_sparen_open = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before ')' of control statements other than 'for'. +# +# Overrides sp_inside_sparen. +sp_inside_sparen_close = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside '(' and ')' of 'for' statements. +sp_inside_for = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after '(' of 'for' statements. +# +# Overrides sp_inside_for. +sp_inside_for_open = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before ')' of 'for' statements. +# +# Overrides sp_inside_for. +sp_inside_for_close = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '((' or '))' of control statements. +sp_sparen_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space after ')' of control statements. +sp_after_sparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and '{' of control statements. +sp_sparen_brace = force # ignore/add/remove/force/not_defined + +# Add or remove space between 'do' and '{'. +sp_do_brace_open = force # ignore/add/remove/force/not_defined + +# Add or remove space between '}' and 'while'. +sp_brace_close_while = force # ignore/add/remove/force/not_defined + +# Add or remove space between 'while' and '('. Overrides sp_before_sparen. +sp_while_paren_open = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space between 'invariant' and '('. +sp_invariant_paren = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space after the ')' in 'invariant (C) c'. +sp_after_invariant_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before empty statement ';' on 'if', 'for' and 'while'. +sp_special_semi = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before ';'. +# +# Default: remove +sp_before_semi = remove # ignore/add/remove/force/not_defined + +# Add or remove space before ';' in non-empty 'for' statements. +sp_before_semi_for = remove # ignore/add/remove/force/not_defined + +# Add or remove space before a semicolon of an empty left part of a for +# statement, as in 'for ( <here> ; ; )'. +sp_before_semi_for_empty = remove # ignore/add/remove/force/not_defined + +# Add or remove space between the semicolons of an empty middle part of a for +# statement, as in 'for ( ; <here> ; )'. +sp_between_semi_for_empty = remove # ignore/add/remove/force/not_defined + +# Add or remove space after ';', except when followed by a comment. +# +# Default: add +sp_after_semi = add # ignore/add/remove/force/not_defined + +# Add or remove space after ';' in non-empty 'for' statements. +# +# Default: force +sp_after_semi_for = force # ignore/add/remove/force/not_defined + +# Add or remove space after the final semicolon of an empty part of a for +# statement, as in 'for ( ; ; <here> )'. +sp_after_semi_for_empty = remove # ignore/add/remove/force/not_defined + +# Add or remove space before '[' (except '[]'). +sp_before_square = remove # ignore/add/remove/force/not_defined + +# Add or remove space before '[' for a variable definition. +# +# Default: remove +sp_before_vardef_square = remove # ignore/add/remove/force/not_defined + +# Add or remove space before '[' for asm block. +sp_before_square_asm_block = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before '[]'. +sp_before_squares = remove # ignore/add/remove/force/not_defined + +# Add or remove space before C++17 structured bindings. +sp_cpp_before_struct_binding = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside a non-empty '[' and ']'. +sp_inside_square = remove # ignore/add/remove/force/not_defined + +# Add or remove space inside '[]'. +sp_inside_square_empty = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space inside a non-empty Objective-C boxed array '@[' and +# ']'. If set to ignore, sp_inside_square is used. +sp_inside_square_oc_array = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after ',', i.e. 'a,b' vs. 'a, b'. +sp_after_comma = add # ignore/add/remove/force/not_defined + +# Add or remove space before ',', i.e. 'a,b' vs. 'a ,b'. +# +# Default: remove +sp_before_comma = remove # ignore/add/remove/force/not_defined + +# (C#, Vala) Add or remove space between ',' and ']' in multidimensional array type +# like 'int[,,]'. +sp_after_mdatype_commas = ignore # ignore/add/remove/force/not_defined + +# (C#, Vala) Add or remove space between '[' and ',' in multidimensional array type +# like 'int[,,]'. +sp_before_mdatype_commas = ignore # ignore/add/remove/force/not_defined + +# (C#, Vala) Add or remove space between ',' in multidimensional array type +# like 'int[,,]'. +sp_between_mdatype_commas = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between an open parenthesis and comma, +# i.e. '(,' vs. '( ,'. +# +# Default: force +sp_paren_comma = force # ignore/add/remove/force/not_defined + +# Add or remove space between a type and ':'. +sp_type_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the variadic '...' when preceded by a +# non-punctuator. +# The value REMOVE will be overridden with FORCE +sp_after_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before the variadic '...' when preceded by a +# non-punctuator. +# The value REMOVE will be overridden with FORCE +sp_before_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a type and '...'. +sp_type_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a '*' and '...'. +sp_ptr_type_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and '...'. +sp_paren_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '&&' and '...'. +sp_byref_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and a qualifier such as 'const'. +sp_paren_qualifier = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and 'noexcept'. +sp_paren_noexcept = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after class ':'. +sp_after_class_colon = remove # ignore/add/remove/force/not_defined + +# Add or remove space before class ':'. +sp_before_class_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after class constructor ':'. +# +# Default: add +sp_after_constr_colon = add # ignore/add/remove/force/not_defined + +# Add or remove space before class constructor ':'. +# +# Default: add +sp_before_constr_colon = add # ignore/add/remove/force/not_defined + +# Add or remove space before case ':'. +# +# Default: remove +sp_before_case_colon = remove # ignore/add/remove/force/not_defined + +# Add or remove space between 'operator' and operator sign. +sp_after_operator = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between the operator symbol and the open parenthesis, as +# in 'operator ++('. +sp_after_operator_sym = ignore # ignore/add/remove/force/not_defined + +# Overrides sp_after_operator_sym when the operator has no arguments, as in +# 'operator *()'. +sp_after_operator_sym_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after C/D cast, i.e. 'cast(int)a' vs. 'cast(int) a' or +# '(int)a' vs. '(int) a'. +sp_after_cast = remove # ignore/add/remove/force/not_defined + +# Add or remove spaces inside cast parentheses. +sp_inside_paren_cast = remove # ignore/add/remove/force/not_defined + +# Add or remove space between the type and open parenthesis in a C++ cast, +# i.e. 'int(exp)' vs. 'int (exp)'. +sp_cpp_cast_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'sizeof' and '('. +sp_sizeof_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between 'sizeof' and '...'. +sp_sizeof_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'sizeof...' and '('. +sp_sizeof_ellipsis_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a parameter pack and '...'. +sp_parameter_pack_ellipsis = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'decltype' and '('. +sp_decltype_paren = ignore # ignore/add/remove/force/not_defined + +# (Pawn) Add or remove space after the tag keyword. +sp_after_tag = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside enum '{' and '}'. +sp_inside_braces_enum = force # ignore/add/remove/force/not_defined + +# Add or remove space inside struct/union '{' and '}'. +sp_inside_braces_struct = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space inside Objective-C boxed dictionary '{' and '}' +sp_inside_braces_oc_dict = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after open brace in an unnamed temporary +# direct-list-initialization +# if statement is a brace_init_lst +# works only if sp_brace_brace is set to ignore. +sp_after_type_brace_init_lst_open = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before close brace in an unnamed temporary +# direct-list-initialization +# if statement is a brace_init_lst +# works only if sp_brace_brace is set to ignore. +sp_before_type_brace_init_lst_close = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside an unnamed temporary direct-list-initialization +# if statement is a brace_init_lst +# works only if sp_brace_brace is set to ignore +# works only if sp_before_type_brace_init_lst_close is set to ignore. +sp_inside_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside '{' and '}'. +sp_inside_braces = add # ignore/add/remove/force/not_defined + +# Add or remove space inside '{}'. +sp_inside_braces_empty = remove # ignore/add/remove/force/not_defined + +# Add or remove space around trailing return operator '->'. +sp_trailing_return = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between return type and function name. A minimum of 1 +# is forced except for pointer return types. +sp_type_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between type and open brace of an unnamed temporary +# direct-list-initialization. +sp_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '(' on function declaration. +sp_func_proto_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '()' on function declaration +# without parameters. +sp_func_proto_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '(' with a typedef specifier. +sp_func_type_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between alias name and '(' of a non-pointer function type typedef. +sp_func_def_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '()' on function definition +# without parameters. +sp_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside empty function '()'. +# Overrides sp_after_angle unless use_sp_after_angle_always is set to true. +sp_inside_fparens = remove # ignore/add/remove/force/not_defined + +# Add or remove space inside function '(' and ')'. +sp_inside_fparen = remove # ignore/add/remove/force/not_defined + +# Add or remove space inside user functor '(' and ')'. +sp_func_call_user_inside_rparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside empty functor '()'. +# Overrides sp_after_angle unless use_sp_after_angle_always is set to true. +sp_inside_rparens = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside functor '(' and ')'. +sp_inside_rparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside the first parentheses in a function type, as in +# 'void (*x)(...)'. +sp_inside_tparen = remove # ignore/add/remove/force/not_defined + +# Add or remove space between the ')' and '(' in a function type, as in +# 'void (*x)(...)'. +sp_after_tparen_close = remove # ignore/add/remove/force/not_defined + +# Add or remove space between ']' and '(' when part of a function call. +sp_square_fparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and '{' of function. +sp_fparen_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and '{' of a function call in object +# initialization. +# +# Overrides sp_fparen_brace. +sp_fparen_brace_initializer = ignore # ignore/add/remove/force/not_defined + +# (Java) Add or remove space between ')' and '{{' of double brace initializer. +sp_fparen_dbrace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '(' on function calls. +sp_func_call_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between function name and '()' on function calls without +# parameters. If set to ignore (the default), sp_func_call_paren is used. +sp_func_call_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between the user function name and '(' on function +# calls. You need to set a keyword to be a user function in the config file, +# like: +# set func_call_user tr _ i18n +sp_func_call_user_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside user function '(' and ')'. +sp_func_call_user_inside_fparen = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between nested parentheses with user functions, +# i.e. '((' vs. '( ('. +sp_func_call_user_paren_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a constructor/destructor and the open +# parenthesis. +sp_func_class_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a constructor without parameters or destructor +# and '()'. +sp_func_class_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after 'return'. +# +# Default: force +sp_return = force # ignore/add/remove/force/not_defined + +# Add or remove space between 'return' and '('. +sp_return_paren = force # ignore/add/remove/force/not_defined + +# Add or remove space between 'return' and '{'. +sp_return_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '__attribute__' and '('. +sp_attribute_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between 'defined' and '(' in '#if defined (FOO)'. +sp_defined_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between 'throw' and '(' in 'throw (something)'. +sp_throw_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'throw' and anything other than '(' as in +# '@throw [...];'. +sp_after_throw = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'catch' and '(' in 'catch (something) { }'. +# If set to ignore, sp_before_sparen is used. +sp_catch_paren = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between '@catch' and '(' +# in '@catch (something) { }'. If set to ignore, sp_catch_paren is used. +sp_oc_catch_paren = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before Objective-C protocol list +# as in '@protocol Protocol<here><Protocol_A>' or '@interface MyClass : NSObject<here><MyProtocol>'. +sp_before_oc_proto_list = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between class name and '(' +# in '@interface className(categoryName)<ProtocolName>:BaseClass' +sp_oc_classname_paren = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space between 'version' and '(' +# in 'version (something) { }'. If set to ignore, sp_before_sparen is used. +sp_version_paren = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space between 'scope' and '(' +# in 'scope (something) { }'. If set to ignore, sp_before_sparen is used. +sp_scope_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'super' and '(' in 'super (something)'. +# +# Default: remove +sp_super_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between 'this' and '(' in 'this (something)'. +# +# Default: remove +sp_this_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove space between a macro name and its definition. +sp_macro = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a macro function ')' and its definition. +sp_macro_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'else' and '{' if on the same line. +sp_else_brace = force # ignore/add/remove/force/not_defined + +# Add or remove space between '}' and 'else' if on the same line. +sp_brace_else = force # ignore/add/remove/force/not_defined + +# Add or remove space between '}' and the name of a typedef on the same line. +sp_brace_typedef = force # ignore/add/remove/force/not_defined + +# Add or remove space before the '{' of a 'catch' statement, if the '{' and +# 'catch' are on the same line, as in 'catch (decl) <here> {'. +sp_catch_brace = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before the '{' of a '@catch' statement, if the '{' +# and '@catch' are on the same line, as in '@catch (decl) <here> {'. +# If set to ignore, sp_catch_brace is used. +sp_oc_catch_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '}' and 'catch' if on the same line. +sp_brace_catch = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between '}' and '@catch' if on the same line. +# If set to ignore, sp_brace_catch is used. +sp_oc_brace_catch = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'finally' and '{' if on the same line. +sp_finally_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between '}' and 'finally' if on the same line. +sp_brace_finally = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'try' and '{' if on the same line. +sp_try_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between get/set and '{' if on the same line. +sp_getset_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a variable and '{' for C++ uniform +# initialization. +sp_word_brace_init_lst = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between a variable and '{' for a namespace. +# +# Default: add +sp_word_brace_ns = add # ignore/add/remove/force/not_defined + +# Add or remove space before the '::' operator. +sp_before_dc = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the '::' operator. +sp_after_dc = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove around the D named array initializer ':' operator. +sp_d_array_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the '!' (not) unary operator. +# +# Default: remove +sp_not = remove # ignore/add/remove/force/not_defined + +# Add or remove space between two '!' (not) unary operators. +# If set to ignore, sp_not will be used. +sp_not_not = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the '~' (invert) unary operator. +# +# Default: remove +sp_inv = remove # ignore/add/remove/force/not_defined + +# Add or remove space after the '&' (address-of) unary operator. This does not +# affect the spacing after a '&' that is part of a type. +# +# Default: remove +sp_addr = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around the '.' or '->' operators. +# +# Default: remove +sp_member = remove # ignore/add/remove/force/not_defined + +# Add or remove space after the '*' (dereference) unary operator. This does +# not affect the spacing after a '*' that is part of a type. +# +# Default: remove +sp_deref = remove # ignore/add/remove/force/not_defined + +# Add or remove space after '+' or '-', as in 'x = -5' or 'y = +7'. +# +# Default: remove +sp_sign = remove # ignore/add/remove/force/not_defined + +# Add or remove space between '++' and '--' the word to which it is being +# applied, as in '(--x)' or 'y++;'. +# +# Default: remove +sp_incdec = remove # ignore/add/remove/force/not_defined + +# Add or remove space before a backslash-newline at the end of a line. +# +# Default: add +sp_before_nl_cont = force # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the scope '+' or '-', as in '-(void) foo;' +# or '+(int) bar;'. +sp_after_oc_scope = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the colon in message specs, +# i.e. '-(int) f:(int) x;' vs. '-(int) f: (int) x;'. +sp_after_oc_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before the colon in message specs, +# i.e. '-(int) f: (int) x;' vs. '-(int) f : (int) x;'. +sp_before_oc_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};'. +sp_after_oc_dict_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before the colon in immutable dictionary expression +# 'NSDictionary *test = @{@"foo" :@"bar"};'. +sp_before_oc_dict_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the colon in message specs, +# i.e. '[object setValue:1];' vs. '[object setValue: 1];'. +sp_after_send_oc_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before the colon in message specs, +# i.e. '[object setValue:1];' vs. '[object setValue :1];'. +sp_before_send_oc_colon = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the (type) in message specs, +# i.e. '-(int)f: (int) x;' vs. '-(int)f: (int)x;'. +sp_after_oc_type = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after the first (type) in message specs, +# i.e. '-(int) f:(int)x;' vs. '-(int)f:(int)x;'. +sp_after_oc_return_type = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between '@selector' and '(', +# i.e. '@selector(msgName)' vs. '@selector (msgName)'. +# Also applies to '@protocol()' constructs. +sp_after_oc_at_sel = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between '@selector(x)' and the following word, +# i.e. '@selector(foo) a:' vs. '@selector(foo)a:'. +sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space inside '@selector' parentheses, +# i.e. '@selector(foo)' vs. '@selector( foo )'. +# Also applies to '@protocol()' constructs. +sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space before a block pointer caret, +# i.e. '^int (int arg){...}' vs. ' ^int (int arg){...}'. +sp_before_oc_block_caret = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after a block pointer caret, +# i.e. '^int (int arg){...}' vs. '^ int (int arg){...}'. +sp_after_oc_block_caret = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between the receiver and selector in a message, +# as in '[receiver selector ...]'. +sp_after_oc_msg_receiver = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space after '@property'. +sp_after_oc_property = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove space between '@synchronized' and the open parenthesis, +# i.e. '@synchronized(foo)' vs. '@synchronized (foo)'. +sp_after_oc_synchronized = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around the ':' in 'b ? t : f'. +sp_cond_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before the ':' in 'b ? t : f'. +# +# Overrides sp_cond_colon. +sp_cond_colon_before = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the ':' in 'b ? t : f'. +# +# Overrides sp_cond_colon. +sp_cond_colon_after = ignore # ignore/add/remove/force/not_defined + +# Add or remove space around the '?' in 'b ? t : f'. +sp_cond_question = force # ignore/add/remove/force/not_defined + +# Add or remove space before the '?' in 'b ? t : f'. +# +# Overrides sp_cond_question. +sp_cond_question_before = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the '?' in 'b ? t : f'. +# +# Overrides sp_cond_question. +sp_cond_question_after = ignore # ignore/add/remove/force/not_defined + +# In the abbreviated ternary form '(a ?: b)', add or remove space between '?' +# and ':'. +# +# Overrides all other sp_cond_* options. +sp_cond_ternary_short = ignore # ignore/add/remove/force/not_defined + +# Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make +# sense here. +sp_case_label = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space around the D '..' operator. +sp_range = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after ':' in a Java/C++11 range-based 'for', +# as in 'for (Type var : <here> expr)'. +sp_after_for_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before ':' in a Java/C++11 range-based 'for', +# as in 'for (Type var <here> : expr)'. +sp_before_for_colon = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove space between 'extern' and '(' as in 'extern <here> (C)'. +sp_extern_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the opening of a C++ comment, as in '// <here> A'. +sp_cmt_cpp_start = ignore # ignore/add/remove/force/not_defined + +# remove space after the '//' and the pvs command '-V1234', +# only works with sp_cmt_cpp_start set to add or force. +sp_cmt_cpp_pvs = false # true/false + +# remove space after the '//' and the command 'lint', +# only works with sp_cmt_cpp_start set to add or force. +sp_cmt_cpp_lint = false # true/false + +# Add or remove space in a C++ region marker comment, as in '// <here> BEGIN'. +# A region marker is defined as a comment which is not preceded by other text +# (i.e. the comment is the first non-whitespace on the line), and which starts +# with either 'BEGIN' or 'END'. +# +# Overrides sp_cmt_cpp_start. +sp_cmt_cpp_region = ignore # ignore/add/remove/force/not_defined + +# If true, space added with sp_cmt_cpp_start will be added after Doxygen +# sequences like '///', '///<', '//!' and '//!<'. +sp_cmt_cpp_doxygen = false # true/false + +# If true, space added with sp_cmt_cpp_start will be added after Qt translator +# or meta-data comments like '//:', '//=', and '//~'. +sp_cmt_cpp_qttr = false # true/false + +# Add or remove space between #else or #endif and a trailing comment. +sp_endif_cmt = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after 'new', 'delete' and 'delete[]'. +sp_after_new = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between 'new' and '(' in 'new()'. +sp_between_new_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space between ')' and type in 'new(foo) BAR'. +sp_after_newop_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space inside parentheses of the new operator +# as in 'new(foo) BAR'. +sp_inside_newop_paren = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after the open parenthesis of the new operator, +# as in 'new(foo) BAR'. +# +# Overrides sp_inside_newop_paren. +sp_inside_newop_paren_open = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before the close parenthesis of the new operator, +# as in 'new(foo) BAR'. +# +# Overrides sp_inside_newop_paren. +sp_inside_newop_paren_close = ignore # ignore/add/remove/force/not_defined + +# Add or remove space before a trailing comment. +sp_before_tr_cmt = add # ignore/add/remove/force/not_defined + +# Number of spaces before a trailing comment. +sp_num_before_tr_cmt = 2 # unsigned number + +# Add or remove space before an embedded comment. +# +# Default: force +sp_before_emb_cmt = force # ignore/add/remove/force/not_defined + +# Number of spaces before an embedded comment. +# +# Default: 1 +sp_num_before_emb_cmt = 1 # unsigned number + +# Add or remove space after an embedded comment. +# +# Default: force +sp_after_emb_cmt = force # ignore/add/remove/force/not_defined + +# Number of spaces after an embedded comment. +# +# Default: 1 +sp_num_after_emb_cmt = 1 # unsigned number + +# (Java) Add or remove space between an annotation and the open parenthesis. +sp_annotation_paren = ignore # ignore/add/remove/force/not_defined + +# If true, vbrace tokens are dropped to the previous token and skipped. +sp_skip_vbrace_tokens = false # true/false + +# Add or remove space after 'noexcept'. +sp_after_noexcept = ignore # ignore/add/remove/force/not_defined + +# Add or remove space after '_'. +sp_vala_after_translation = ignore # ignore/add/remove/force/not_defined + +# If true, a <TAB> is inserted after #define. +force_tab_after_define = false # true/false + +# +# Indenting options +# + +# The number of columns to indent per level. Usually 2, 3, 4, or 8. +# +# Default: 8 +indent_columns = 2 # unsigned number + +# Whether to ignore indent for the first continuation line. Subsequent +# continuation lines will still be indented to match the first. +indent_ignore_first_continue = false # true/false + +# The continuation indent. If non-zero, this overrides the indent of '(', '[' +# and '=' continuation indents. Negative values are OK; negative value is +# absolute and not increased for each '(' or '[' level. +# +# For FreeBSD, this is set to 4. +# Requires indent_ignore_first_continue=false. +indent_continue = 0 # number + +# The continuation indent, only for class header line(s). If non-zero, this +# overrides the indent of 'class' continuation indents. +# Requires indent_ignore_first_continue=false. +indent_continue_class_head = 0 # unsigned number + +# Whether to indent empty lines (i.e. lines which contain only spaces before +# the newline character). +indent_single_newlines = false # true/false + +# The continuation indent for func_*_param if they are true. If non-zero, this +# overrides the indent. +indent_param = 0 # unsigned number + +# How to use tabs when indenting code. +# +# 0: Spaces only +# 1: Indent with tabs to brace level, align with spaces (default) +# 2: Indent and align with tabs, using spaces when not on a tabstop +# +# Default: 1 +indent_with_tabs = 0 # unsigned number + +# Whether to indent comments that are not at a brace level with tabs on a +# tabstop. Requires indent_with_tabs=2. If false, will use spaces. +indent_cmt_with_tabs = false # true/false + +# Whether to indent strings broken by '\' so that they line up. +indent_align_string = false # true/false + +# The number of spaces to indent multi-line XML strings. +# Requires indent_align_string=true. +indent_xml_string = 0 # unsigned number + +# Spaces to indent '{' from level. +indent_brace = 0 # unsigned number + +# Whether braces are indented to the body level. +indent_braces = false # true/false + +# Whether to disable indenting function braces if indent_braces=true. +indent_braces_no_func = false # true/false + +# Whether to disable indenting class braces if indent_braces=true. +indent_braces_no_class = false # true/false + +# Whether to disable indenting struct braces if indent_braces=true. +indent_braces_no_struct = false # true/false + +# Whether to indent based on the size of the brace parent, +# i.e. 'if' => 3 spaces, 'for' => 4 spaces, etc. +indent_brace_parent = false # true/false + +# Whether to indent based on the open parenthesis instead of the open brace +# in '({\n'. +indent_paren_open_brace = false # true/false + +# (C#) Whether to indent the brace of a C# delegate by another level. +indent_cs_delegate_brace = false # true/false + +# (C#) Whether to indent a C# delegate (to handle delegates with no brace) by +# another level. +indent_cs_delegate_body = false # true/false + +# Whether to indent the body of a 'namespace'. +indent_namespace = false # true/false + +# Whether to indent only the first namespace, and not any nested namespaces. +# Requires indent_namespace=true. +indent_namespace_single_indent = false # true/false + +# The number of spaces to indent a namespace block. +# If set to zero, use the value indent_columns +indent_namespace_level = 0 # unsigned number + +# If the body of the namespace is longer than this number, it won't be +# indented. Requires indent_namespace=true. 0 means no limit. +indent_namespace_limit = 0 # unsigned number + +# Whether to indent only in inner namespaces (nested in other namespaces). +# Requires indent_namespace=true. +indent_namespace_inner_only = false # true/false + +# Whether the 'extern "C"' body is indented. +indent_extern = false # true/false + +# Whether the 'class' body is indented. +indent_class = false # true/false + +# Whether to ignore indent for the leading base class colon. +indent_ignore_before_class_colon = true # true/false + +# Additional indent before the leading base class colon. +# Negative values decrease indent down to the first column. +# Requires indent_ignore_before_class_colon=false and a newline break before +# the colon (see pos_class_colon and nl_class_colon) +indent_before_class_colon = 0 # number + +# Whether to indent the stuff after a leading base class colon. +indent_class_colon = false # true/false + +# Whether to indent based on a class colon instead of the stuff after the +# colon. Requires indent_class_colon=true. +indent_class_on_colon = false # true/false + +# Whether to ignore indent for a leading class initializer colon. +indent_ignore_before_constr_colon = false # true/false + +# Whether to indent the stuff after a leading class initializer colon. +indent_constr_colon = false # true/false + +# Virtual indent from the ':' for leading member initializers. +# +# Default: 2 +indent_ctor_init_leading = 2 # unsigned number + +# Virtual indent from the ':' for following member initializers. +# +# Default: 2 +indent_ctor_init_following = 2 # unsigned number + +# Additional indent for constructor initializer list. +# Negative values decrease indent down to the first column. +indent_ctor_init = 0 # number + +# Whether to indent 'if' following 'else' as a new block under the 'else'. +# If false, 'else\nif' is treated as 'else if' for indenting purposes. +indent_else_if = false # true/false + +# Amount to indent variable declarations after a open brace. +# +# <0: Relative +# >=0: Absolute +indent_var_def_blk = 0 # number + +# Whether to indent continued variable declarations instead of aligning. +indent_var_def_cont = false # true/false + +# How to indent continued shift expressions ('<<' and '>>'). +# Set align_left_shift=false when using this. +# 0: Align shift operators instead of indenting them (default) +# 1: Indent by one level +# -1: Preserve original indentation +indent_shift = 0 # number + +# Whether to force indentation of function definitions to start in column 1. +indent_func_def_force_col1 = false # true/false + +# Whether to indent continued function call parameters one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_call_param = false # true/false + +# Whether to indent continued function definition parameters one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_def_param = false # true/false + +# for function definitions, only if indent_func_def_param is false +# Allows to align params when appropriate and indent them when not +# behave as if it was true if paren position is more than this value +# if paren position is more than the option value +indent_func_def_param_paren_pos_threshold = 0 # unsigned number + +# Whether to indent continued function call prototype one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_proto_param = false # true/false + +# Whether to indent continued function call declaration one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_class_param = false # true/false + +# Whether to indent continued class variable constructors one indent level, +# rather than aligning parameters under the open parenthesis. +indent_func_ctor_var_param = false # true/false + +# Whether to indent continued template parameter list one indent level, +# rather than aligning parameters under the open parenthesis. +indent_template_param = false # true/false + +# Double the indent for indent_func_xxx_param options. +# Use both values of the options indent_columns and indent_param. +indent_func_param_double = false # true/false + +# Indentation column for standalone 'const' qualifier on a function +# prototype. +indent_func_const = 0 # unsigned number + +# Indentation column for standalone 'throw' qualifier on a function +# prototype. +indent_func_throw = 0 # unsigned number + +# How to indent within a macro followed by a brace on the same line +# This allows reducing the indent in macros that have (for example) +# `do { ... } while (0)` blocks bracketing them. +# +# true: add an indent for the brace on the same line as the macro +# false: do not add an indent for the brace on the same line as the macro +# +# Default: true +indent_macro_brace = false # true/false + +# The number of spaces to indent a continued '->' or '.'. +# Usually set to 0, 1, or indent_columns. +indent_member = 0 # unsigned number + +# Whether lines broken at '.' or '->' should be indented by a single indent. +# The indent_member option will not be effective if this is set to true. +indent_member_single = false # true/false + +# Spaces to indent single line ('//') comments on lines before code. +indent_single_line_comments_before = 0 # unsigned number + +# Spaces to indent single line ('//') comments on lines after code. +indent_single_line_comments_after = 0 # unsigned number + +# When opening a paren for a control statement (if, for, while, etc), increase +# the indent level by this value. Negative values decrease the indent level. +indent_sparen_extra = 0 # number + +# Whether to indent trailing single line ('//') comments relative to the code +# instead of trying to keep the same absolute column. +indent_relative_single_line_comments = true # true/false + +# Spaces to indent 'case' from 'switch'. Usually 0 or indent_columns. +# It might be wise to choose the same value for the option indent_case_brace. +indent_switch_case = 0 # unsigned number + +# Spaces to indent the body of a 'switch' before any 'case'. +# Usually the same as indent_columns or indent_switch_case. +indent_switch_body = 0 # unsigned number + +# Whether to ignore indent for '{' following 'case'. +indent_ignore_case_brace = false # true/false + +# Spaces to indent '{' from 'case'. By default, the brace will appear under +# the 'c' in case. Usually set to 0 or indent_columns. Negative values are OK. +# It might be wise to choose the same value for the option indent_switch_case. +indent_case_brace = 0 # number + +# indent 'break' with 'case' from 'switch'. +indent_switch_break_with_case = false # true/false + +# Whether to indent preprocessor statements inside of switch statements. +# +# Default: true +indent_switch_pp = true # true/false + +# Spaces to shift the 'case' line, without affecting any other lines. +# Usually 0. +indent_case_shift = 0 # unsigned number + +# Whether to align comments before 'case' with the 'case'. +# +# Default: true +indent_case_comment = true # true/false + +# Whether to indent comments not found in first column. +# +# Default: true +indent_comment = true # true/false + +# Whether to indent comments found in first column. +indent_col1_comment = false # true/false + +# Whether to indent multi string literal in first column. +indent_col1_multi_string_literal = false # true/false + +# Align comments on adjacent lines that are this many columns apart or less. +# +# Default: 3 +indent_comment_align_thresh = 3 # unsigned number + +# Whether to ignore indent for goto labels. +indent_ignore_label = true # true/false + +# How to indent goto labels. Requires indent_ignore_label=false. +# +# >0: Absolute column where 1 is the leftmost column +# <=0: Subtract from brace indent +# +# Default: 1 +indent_label = 1 # number + +# How to indent access specifiers that are followed by a +# colon. +# +# >0: Absolute column where 1 is the leftmost column +# <=0: Subtract from brace indent +# +# Default: 1 +indent_access_spec = 1 # number + +# Whether to indent the code after an access specifier by one level. +# If true, this option forces 'indent_access_spec=0'. +indent_access_spec_body = false # true/false + +# If an open parenthesis is followed by a newline, whether to indent the next +# line so that it lines up after the open parenthesis (not recommended). +indent_paren_nl = false # true/false + +# How to indent a close parenthesis after a newline. +# +# 0: Indent to body level (default) +# 1: Align under the open parenthesis +# 2: Indent to the brace level +# -1: Preserve original indentation +indent_paren_close = 0 # number + +# Whether to indent the open parenthesis of a function definition, +# if the parenthesis is on its own line. +indent_paren_after_func_def = false # true/false + +# Whether to indent the open parenthesis of a function declaration, +# if the parenthesis is on its own line. +indent_paren_after_func_decl = false # true/false + +# Whether to indent the open parenthesis of a function call, +# if the parenthesis is on its own line. +indent_paren_after_func_call = true # true/false + +# How to indent a comma when inside braces. +# 0: Indent by one level (default) +# 1: Align under the open brace +# -1: Preserve original indentation +indent_comma_brace = 0 # number + +# How to indent a comma when inside parentheses. +# 0: Indent by one level (default) +# 1: Align under the open parenthesis +# -1: Preserve original indentation +indent_comma_paren = 0 # number + +# How to indent a Boolean operator when inside parentheses. +# 0: Indent by one level (default) +# 1: Align under the open parenthesis +# -1: Preserve original indentation +indent_bool_paren = 0 # number + +# Whether to ignore the indentation of a Boolean operator when outside +# parentheses. +indent_ignore_bool = false # true/false + +# Whether to ignore the indentation of an arithmetic operator. +indent_ignore_arith = false # true/false + +# Whether to indent a semicolon when inside a for parenthesis. +# If true, aligns under the open for parenthesis. +indent_semicolon_for_paren = false # true/false + +# Whether to ignore the indentation of a semicolon outside of a 'for' +# statement. +indent_ignore_semicolon = false # true/false + +# Whether to align the first expression to following ones +# if indent_bool_paren=1. +indent_first_bool_expr = false # true/false + +# Whether to align the first expression to following ones +# if indent_semicolon_for_paren=true. +indent_first_for_expr = false # true/false + +# If an open square is followed by a newline, whether to indent the next line +# so that it lines up after the open square (not recommended). +indent_square_nl = false # true/false + +# (ESQL/C) Whether to preserve the relative indent of 'EXEC SQL' bodies. +indent_preserve_sql = false # true/false + +# Whether to ignore the indentation of an assignment operator. +indent_ignore_assign = false # true/false + +# Whether to align continued statements at the '='. If false or if the '=' is +# followed by a newline, the next line is indent one tab. +# +# Default: true +indent_align_assign = true # true/false + +# If true, the indentation of the chunks after a '=' sequence will be set at +# LHS token indentation column before '='. +indent_off_after_assign = false # true/false + +# Whether to align continued statements at the '('. If false or the '(' is +# followed by a newline, the next line indent is one tab. +# +# Default: true +indent_align_paren = true # true/false + +# (OC) Whether to indent Objective-C code inside message selectors. +indent_oc_inside_msg_sel = false # true/false + +# (OC) Whether to indent Objective-C blocks at brace level instead of usual +# rules. +indent_oc_block = false # true/false + +# (OC) Indent for Objective-C blocks in a message relative to the parameter +# name. +# +# =0: Use indent_oc_block rules +# >0: Use specified number of spaces to indent +indent_oc_block_msg = 0 # unsigned number + +# (OC) Minimum indent for subsequent parameters +indent_oc_msg_colon = 0 # unsigned number + +# (OC) Whether to prioritize aligning with initial colon (and stripping spaces +# from lines, if necessary). +# +# Default: true +indent_oc_msg_prioritize_first_colon = true # true/false + +# (OC) Whether to indent blocks the way that Xcode does by default +# (from the keyword if the parameter is on its own line; otherwise, from the +# previous indentation level). Requires indent_oc_block_msg=true. +indent_oc_block_msg_xcode_style = false # true/false + +# (OC) Whether to indent blocks from where the brace is, relative to a +# message keyword. Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_keyword = false # true/false + +# (OC) Whether to indent blocks from where the brace is, relative to a message +# colon. Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_colon = false # true/false + +# (OC) Whether to indent blocks from where the block caret is. +# Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_caret = false # true/false + +# (OC) Whether to indent blocks from where the brace caret is. +# Requires indent_oc_block_msg=true. +indent_oc_block_msg_from_brace = false # true/false + +# When indenting after virtual brace open and newline add further spaces to +# reach this minimum indent. +indent_min_vbrace_open = 0 # unsigned number + +# Whether to add further spaces after regular indent to reach next tabstop +# when indenting after virtual brace open and newline. +indent_vbrace_open_on_tabstop = false # true/false + +# How to indent after a brace followed by another token (not a newline). +# true: indent all contained lines to match the token +# false: indent all contained lines to match the brace +# +# Default: true +indent_token_after_brace = true # true/false + +# Whether to indent the body of a C++11 lambda. +indent_cpp_lambda_body = false # true/false + +# How to indent compound literals that are being returned. +# true: add both the indent from return & the compound literal open brace +# (i.e. 2 indent levels) +# false: only indent 1 level, don't add the indent for the open brace, only +# add the indent for the return. +# +# Default: true +indent_compound_literal_return = false # true/false + +# (C#) Whether to indent a 'using' block if no braces are used. +# +# Default: true +indent_using_block = true # true/false + +# How to indent the continuation of ternary operator. +# +# 0: Off (default) +# 1: When the `if_false` is a continuation, indent it under the `if_true` branch +# 2: When the `:` is a continuation, indent it under `?` +indent_ternary_operator = 0 # unsigned number + +# Whether to indent the statements inside ternary operator. +indent_inside_ternary_operator = false # true/false + +# If true, the indentation of the chunks after a `return` sequence will be set at return indentation column. +indent_off_after_return = false # true/false + +# If true, the indentation of the chunks after a `return new` sequence will be set at return indentation column. +indent_off_after_return_new = false # true/false + +# If true, the tokens after return are indented with regular single indentation. By default (false) the indentation is after the return token. +indent_single_after_return = false # true/false + +# Whether to ignore indent and alignment for 'asm' blocks (i.e. assume they +# have their own indentation). +indent_ignore_asm_block = false # true/false + +# Don't indent the close parenthesis of a function definition, +# if the parenthesis is on its own line. +donot_indent_func_def_close_paren = false # true/false + +# +# Newline adding and removing options +# + +# Whether to collapse empty blocks between '{' and '}' except for functions. +# Use nl_collapse_empty_body_functions to specify how empty function braces +# should be formatted. +nl_collapse_empty_body = true # true/false + +# Whether to collapse empty blocks between '{' and '}' for functions only. +# If true, overrides nl_inside_empty_func. +nl_collapse_empty_body_functions = false # true/false + +# Don't split one-line braced assignments, as in 'foo_t f = { 1, 2 };'. +nl_assign_leave_one_liners = false # true/false + +# Don't split one-line braced statements inside a 'class xx { }' body. +nl_class_leave_one_liners = false # true/false + +# Don't split one-line enums, as in 'enum foo { BAR = 15 };' +nl_enum_leave_one_liners = false # true/false + +# Don't split one-line get or set functions. +nl_getset_leave_one_liners = false # true/false + +# (C#) Don't split one-line property get or set functions. +nl_cs_property_leave_one_liners = false # true/false + +# Don't split one-line function definitions, as in 'int foo() { return 0; }'. +# might modify nl_func_type_name +nl_func_leave_one_liners = false # true/false + +# Don't split one-line C++11 lambdas, as in '[]() { return 0; }'. +nl_cpp_lambda_leave_one_liners = false # true/false + +# Don't split one-line if/else statements, as in 'if(...) b++;'. +nl_if_leave_one_liners = false # true/false + +# Don't split one-line while statements, as in 'while(...) b++;'. +nl_while_leave_one_liners = false # true/false + +# Don't split one-line do statements, as in 'do { b++; } while(...);'. +nl_do_leave_one_liners = false # true/false + +# Don't split one-line for statements, as in 'for(...) b++;'. +nl_for_leave_one_liners = false # true/false + +# (OC) Don't split one-line Objective-C messages. +nl_oc_msg_leave_one_liner = false # true/false + +# (OC) Add or remove newline between method declaration and '{'. +nl_oc_mdef_brace = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove newline between Objective-C block signature and '{'. +nl_oc_block_brace = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove blank line before '@interface' statement. +nl_oc_before_interface = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove blank line before '@implementation' statement. +nl_oc_before_implementation = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove blank line before '@end' statement. +nl_oc_before_end = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove newline between '@interface' and '{'. +nl_oc_interface_brace = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove newline between '@implementation' and '{'. +nl_oc_implementation_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newlines at the start of the file. +nl_start_of_file = ignore # ignore/add/remove/force/not_defined + +# The minimum number of newlines at the start of the file (only used if +# nl_start_of_file is 'add' or 'force'). +nl_start_of_file_min = 0 # unsigned number + +# Add or remove newline at the end of the file. +nl_end_of_file = force # ignore/add/remove/force/not_defined + +# The minimum number of newlines at the end of the file (only used if +# nl_end_of_file is 'add' or 'force'). +nl_end_of_file_min = 1 # unsigned number + +# Add or remove newline between '=' and '{'. +nl_assign_brace = remove # ignore/add/remove/force/not_defined + +# (D) Add or remove newline between '=' and '['. +nl_assign_square = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '[]' and '{'. +nl_tsquare_brace = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove newline after '= ['. Will also affect the newline before +# the ']'. +nl_after_square_assign = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between a function call's ')' and '{', as in +# 'list_for_each(item, &list) { }'. +nl_fcall_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'enum' and '{'. +nl_enum_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'enum' and 'class'. +nl_enum_class = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'enum class' and the identifier. +nl_enum_class_identifier = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'enum class' type and ':'. +nl_enum_identifier_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'enum class identifier :' and type. +nl_enum_colon_type = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'struct and '{'. +nl_struct_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'union' and '{'. +nl_union_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'if' and '{'. +nl_if_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and 'else'. +nl_brace_else = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'else if' and '{'. If set to ignore, +# nl_if_brace is used instead. +nl_elseif_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'else' and '{'. +nl_else_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'else' and 'if'. +nl_else_if = remove # ignore/add/remove/force/not_defined + +# Add or remove newline before '{' opening brace +nl_before_opening_brace_func_class_def = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline before 'if'/'else if' closing parenthesis. +nl_before_if_closing_paren = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and 'finally'. +nl_brace_finally = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'finally' and '{'. +nl_finally_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'try' and '{'. +nl_try_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between get/set and '{'. +nl_getset_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'for' and '{'. +nl_for_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline before the '{' of a 'catch' statement, as in +# 'catch (decl) <here> {'. +nl_catch_brace = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove newline before the '{' of a '@catch' statement, as in +# '@catch (decl) <here> {'. If set to ignore, nl_catch_brace is used. +nl_oc_catch_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and 'catch'. +nl_brace_catch = ignore # ignore/add/remove/force/not_defined + +# (OC) Add or remove newline between '}' and '@catch'. If set to ignore, +# nl_brace_catch is used. +nl_oc_brace_catch = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and ']'. +nl_brace_square = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and ')' in a function invocation. +nl_brace_fparen = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'while' and '{'. +nl_while_brace = remove # ignore/add/remove/force/not_defined + +# (D) Add or remove newline between 'scope (x)' and '{'. +nl_scope_brace = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove newline between 'unittest' and '{'. +nl_unittest_brace = ignore # ignore/add/remove/force/not_defined + +# (D) Add or remove newline between 'version (x)' and '{'. +nl_version_brace = ignore # ignore/add/remove/force/not_defined + +# (C#) Add or remove newline between 'using' and '{'. +nl_using_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between two open or close braces. Due to general +# newline/brace handling, REMOVE may not work. +nl_brace_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'do' and '{'. +nl_do_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between '}' and 'while' of 'do' statement. +nl_brace_while = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'switch' and '{'. +nl_switch_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'synchronized' and '{'. +nl_synchronized_brace = ignore # ignore/add/remove/force/not_defined + +# Add a newline between ')' and '{' if the ')' is on a different line than the +# if/for/etc. +# +# Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch and +# nl_catch_brace. +nl_multi_line_cond = false # true/false + +# Add a newline after '(' if an if/for/while/switch condition spans multiple +# lines +nl_multi_line_sparen_open = remove # ignore/add/remove/force/not_defined + +# Add a newline before ')' if an if/for/while/switch condition spans multiple +# lines. Overrides nl_before_if_closing_paren if both are specified. +nl_multi_line_sparen_close = remove # ignore/add/remove/force/not_defined + +# Force a newline in a define after the macro name for multi-line defines. +nl_multi_line_define = false # true/false + +# Whether to add a newline before 'case', and a blank line before a 'case' +# statement that follows a ';' or '}'. +nl_before_case = false # true/false + +# Whether to add a newline after a 'case' statement. +nl_after_case = true # true/false + +# Add or remove newline between a case ':' and '{'. +# +# Overrides nl_after_case. +nl_case_colon_brace = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between ')' and 'throw'. +nl_before_throw = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'namespace' and '{'. +nl_namespace_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template class. +nl_template_class = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template class declaration. +# +# Overrides nl_template_class. +nl_template_class_decl = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<>' of a specialized class declaration. +# +# Overrides nl_template_class_decl. +nl_template_class_decl_special = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template class definition. +# +# Overrides nl_template_class. +nl_template_class_def = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<>' of a specialized class definition. +# +# Overrides nl_template_class_def. +nl_template_class_def_special = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template function. +nl_template_func = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template function +# declaration. +# +# Overrides nl_template_func. +nl_template_func_decl = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<>' of a specialized function +# declaration. +# +# Overrides nl_template_func_decl. +nl_template_func_decl_special = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template function +# definition. +# +# Overrides nl_template_func. +nl_template_func_def = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<>' of a specialized function +# definition. +# +# Overrides nl_template_func_def. +nl_template_func_def_special = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after 'template<...>' of a template variable. +nl_template_var = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'template<...>' and 'using' of a templated +# type alias. +nl_template_using = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'class' and '{'. +nl_class_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline before or after (depending on pos_class_comma, +# may not be IGNORE) each',' in the base class list. +nl_class_init_args = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after each ',' in the constructor member +# initialization. Related to nl_constr_colon, pos_constr_colon and +# pos_constr_comma. +nl_constr_init_args = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline before first element, after comma, and after last +# element, in 'enum'. +nl_enum_own_lines = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between return type and function name in a function +# definition. +# might be modified by nl_func_leave_one_liners +nl_func_type_name = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between return type and function name inside a class +# definition. If set to ignore, nl_func_type_name or nl_func_proto_type_name +# is used instead. +nl_func_type_name_class = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between class specification and '::' +# in 'void A::f() { }'. Only appears in separate member implementation (does +# not appear with in-line implementation). +nl_func_class_scope = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between function scope and name, as in +# 'void A :: <here> f() { }'. +nl_func_scope_name = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between return type and function name in a prototype. +nl_func_proto_type_name = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between a function name and the opening '(' in the +# declaration. +nl_func_paren = ignore # ignore/add/remove/force/not_defined + +# Overrides nl_func_paren for functions with no parameters. +nl_func_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between a function name and the opening '(' in the +# definition. +nl_func_def_paren = remove # ignore/add/remove/force/not_defined + +# Overrides nl_func_def_paren for functions with no parameters. +nl_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between a function name and the opening '(' in the +# call. +nl_func_call_paren = ignore # ignore/add/remove/force/not_defined + +# Overrides nl_func_call_paren for functions with no parameters. +nl_func_call_paren_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline after '(' in a function declaration. +nl_func_decl_start = remove # ignore/add/remove/force/not_defined + +# Add or remove newline after '(' in a function definition. +nl_func_def_start = remove # ignore/add/remove/force/not_defined + +# Overrides nl_func_decl_start when there is only one parameter. +nl_func_decl_start_single = ignore # ignore/add/remove/force/not_defined + +# Overrides nl_func_def_start when there is only one parameter. +nl_func_def_start_single = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after '(' in a function declaration if '(' and ')' +# are in different lines. If false, nl_func_decl_start is used instead. +nl_func_decl_start_multi_line = false # true/false + +# Whether to add a newline after '(' in a function definition if '(' and ')' +# are in different lines. If false, nl_func_def_start is used instead. +nl_func_def_start_multi_line = false # true/false + +# Add or remove newline after each ',' in a function declaration. +nl_func_decl_args = remove # ignore/add/remove/force/not_defined + +# Add or remove newline after each ',' in a function definition. +nl_func_def_args = remove # ignore/add/remove/force/not_defined + +# Add or remove newline after each ',' in a function call. +nl_func_call_args = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after each ',' in a function declaration if '(' +# and ')' are in different lines. If false, nl_func_decl_args is used instead. +nl_func_decl_args_multi_line = false # true/false + +# Whether to add a newline after each ',' in a function definition if '(' +# and ')' are in different lines. If false, nl_func_def_args is used instead. +nl_func_def_args_multi_line = false # true/false + +# Add or remove newline before the ')' in a function declaration. +nl_func_decl_end = remove # ignore/add/remove/force/not_defined + +# Add or remove newline before the ')' in a function definition. +nl_func_def_end = remove # ignore/add/remove/force/not_defined + +# Overrides nl_func_decl_end when there is only one parameter. +nl_func_decl_end_single = ignore # ignore/add/remove/force/not_defined + +# Overrides nl_func_def_end when there is only one parameter. +nl_func_def_end_single = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline before ')' in a function declaration if '(' and ')' +# are in different lines. If false, nl_func_decl_end is used instead. +nl_func_decl_end_multi_line = false # true/false + +# Whether to add a newline before ')' in a function definition if '(' and ')' +# are in different lines. If false, nl_func_def_end is used instead. +nl_func_def_end_multi_line = false # true/false + +# Add or remove newline between '()' in a function declaration. +nl_func_decl_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '()' in a function definition. +nl_func_def_empty = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between '()' in a function call. +nl_func_call_empty = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after '(' in a function call, +# has preference over nl_func_call_start_multi_line. +nl_func_call_start = remove # ignore/add/remove/force/not_defined + +# Whether to add a newline before ')' in a function call. +nl_func_call_end = remove # ignore/add/remove/force/not_defined + +# Whether to add a newline after '(' in a function call if '(' and ')' are in +# different lines. +nl_func_call_start_multi_line = false # true/false + +# Whether to add a newline after each ',' in a function call if '(' and ')' +# are in different lines. +nl_func_call_args_multi_line = false # true/false + +# Whether to add a newline before ')' in a function call if '(' and ')' are in +# different lines. +nl_func_call_end_multi_line = false # true/false + +# Whether to respect nl_func_call_XXX option in case of closure args. +nl_func_call_args_multi_line_ignore_closures = false # true/false + +# Whether to add a newline after '<' of a template parameter list. +nl_template_start = false # true/false + +# Whether to add a newline after each ',' in a template parameter list. +nl_template_args = false # true/false + +# Whether to add a newline before '>' of a template parameter list. +nl_template_end = false # true/false + +# (OC) Whether to put each Objective-C message parameter on a separate line. +# See nl_oc_msg_leave_one_liner. +nl_oc_msg_args = false # true/false + +# (OC) Minimum number of Objective-C message parameters before applying nl_oc_msg_args. +nl_oc_msg_args_min_params = 0 # unsigned number + +# (OC) Max code width of Objective-C message before applying nl_oc_msg_args. +nl_oc_msg_args_max_code_width = 0 # unsigned number + +# Add or remove newline between function signature and '{'. +nl_fdef_brace = force # ignore/add/remove/force/not_defined + +# Add or remove newline between function signature and '{', +# if signature ends with ')'. Overrides nl_fdef_brace. +nl_fdef_brace_cond = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between C++11 lambda signature and '{'. +nl_cpp_ldef_brace = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline between 'return' and the return expression. +nl_return_expr = remove # ignore/add/remove/force/not_defined + +# Add or remove newline between 'throw' and the throw expression. +nl_throw_expr = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after semicolons, except in 'for' statements. +nl_after_semicolon = false # true/false + +# (Java) Add or remove newline between the ')' and '{{' of the double brace +# initializer. +nl_paren_dbrace_open = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after the type in an unnamed temporary +# direct-list-initialization, better: +# before a direct-list-initialization. +nl_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline after the open brace in an unnamed temporary +# direct-list-initialization. +nl_type_brace_init_lst_open = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline before the close brace in an unnamed temporary +# direct-list-initialization. +nl_type_brace_init_lst_close = ignore # ignore/add/remove/force/not_defined + +# Whether to add a newline before '{'. +nl_before_brace_open = false # true/false + +# Whether to add a newline after '{'. +nl_after_brace_open = false # true/false + +# Whether to add a newline between the open brace and a trailing single-line +# comment. Requires nl_after_brace_open=true. +nl_after_brace_open_cmt = false # true/false + +# Whether to add a newline after a virtual brace open with a non-empty body. +# These occur in un-braced if/while/do/for statement bodies. +nl_after_vbrace_open = false # true/false + +# Whether to add a newline after a virtual brace open with an empty body. +# These occur in un-braced if/while/do/for statement bodies. +nl_after_vbrace_open_empty = false # true/false + +# Whether to add a newline after '}'. Does not apply if followed by a +# necessary ';'. +nl_after_brace_close = false # true/false + +# Whether to add a newline after a virtual brace close, +# as in 'if (foo) a++; <here> return;'. +nl_after_vbrace_close = false # true/false + +# Add or remove newline between the close brace and identifier, +# as in 'struct { int a; } <here> b;'. Affects enumerations, unions and +# structures. If set to ignore, uses nl_after_brace_close. +nl_brace_struct_var = ignore # ignore/add/remove/force/not_defined + +# Whether to alter newlines in '#define' macros. +nl_define_macro = false # true/false + +# Whether to alter newlines between consecutive parenthesis closes. The number +# of closing parentheses in a line will depend on respective open parenthesis +# lines. +nl_squeeze_paren_close = true # true/false + +# Whether to remove blanks after '#ifxx' and '#elxx', or before '#elxx' and +# '#endif'. Does not affect top-level #ifdefs. +nl_squeeze_ifdef = false # true/false + +# Makes the nl_squeeze_ifdef option affect the top-level #ifdefs as well. +nl_squeeze_ifdef_top_level = false # true/false + +# Add or remove blank line before 'if'. +nl_before_if = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'if' statement. Add/Force work only if the +# next token is not a closing brace. +nl_after_if = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line before 'for'. +nl_before_for = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'for' statement. +nl_after_for = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line before 'while'. +nl_before_while = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'while' statement. +nl_after_while = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line before 'switch'. +nl_before_switch = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'switch' statement. +nl_after_switch = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line before 'synchronized'. +nl_before_synchronized = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'synchronized' statement. +nl_after_synchronized = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line before 'do'. +nl_before_do = ignore # ignore/add/remove/force/not_defined + +# Add or remove blank line after 'do/while' statement. +nl_after_do = ignore # ignore/add/remove/force/not_defined + +# Ignore nl_before_{if,for,switch,do,synchronized} if the control +# statement is immediately after a case statement. +# if nl_before_{if,for,switch,do} is set to remove, this option +# does nothing. +nl_before_ignore_after_case = false # true/false + +# Whether to put a blank line before 'return' statements, unless after an open +# brace. +nl_before_return = false # true/false + +# Whether to put a blank line after 'return' statements, unless followed by a +# close brace. +nl_after_return = false # true/false + +# Whether to put a blank line before a member '.' or '->' operators. +nl_before_member = ignore # ignore/add/remove/force/not_defined + +# (Java) Whether to put a blank line after a member '.' or '->' operators. +nl_after_member = ignore # ignore/add/remove/force/not_defined + +# Whether to double-space commented-entries in 'struct'/'union'/'enum'. +nl_ds_struct_enum_cmt = false # true/false + +# Whether to force a newline before '}' of a 'struct'/'union'/'enum'. +# (Lower priority than eat_blanks_before_close_brace.) +nl_ds_struct_enum_close_brace = false # true/false + +# Add or remove newline before or after (depending on pos_class_colon) a class +# colon, as in 'class Foo <here> : <or here> public Bar'. +nl_class_colon = ignore # ignore/add/remove/force/not_defined + +# Add or remove newline around a class constructor colon. The exact position +# depends on nl_constr_init_args, pos_constr_colon and pos_constr_comma. +nl_constr_colon = ignore # ignore/add/remove/force/not_defined + +# Whether to collapse a two-line namespace, like 'namespace foo\n{ decl; }' +# into a single line. If true, prevents other brace newline rules from turning +# such code into four lines. If true, it also preserves one-liner namespaces. +nl_namespace_two_to_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced if statements, turning them +# into one-liners, as in 'if(b)\n i++;' => 'if(b) i++;'. +nl_create_if_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced for statements, turning them +# into one-liners, as in 'for (...)\n stmt;' => 'for (...) stmt;'. +nl_create_for_one_liner = false # true/false + +# Whether to remove a newline in simple unbraced while statements, turning +# them into one-liners, as in 'while (expr)\n stmt;' => 'while (expr) stmt;'. +nl_create_while_one_liner = false # true/false + +# Whether to collapse a function definition whose body (not counting braces) +# is only one line so that the entire definition (prototype, braces, body) is +# a single line. +nl_create_func_def_one_liner = false # true/false + +# Whether to split one-line simple list definitions into three lines by +# adding newlines, as in 'int a[12] = { <here> 0 <here> };'. +nl_create_list_one_liner = false # true/false + +# Whether to split one-line simple unbraced if statements into two lines by +# adding a newline, as in 'if(b) <here> i++;'. +nl_split_if_one_liner = false # true/false + +# Whether to split one-line simple unbraced for statements into two lines by +# adding a newline, as in 'for (...) <here> stmt;'. +nl_split_for_one_liner = false # true/false + +# Whether to split one-line simple unbraced while statements into two lines by +# adding a newline, as in 'while (expr) <here> stmt;'. +nl_split_while_one_liner = false # true/false + +# Don't add a newline before a cpp-comment in a parameter list of a function +# call. +donot_add_nl_before_cpp_comment = false # true/false + +# +# Blank line options +# + +# The maximum number of consecutive newlines (3 = 2 blank lines). +nl_max = 2 # unsigned number + +# The maximum number of consecutive newlines in a function. +nl_max_blank_in_func = 0 # unsigned number + +# The number of newlines inside an empty function body. +# This option overrides eat_blanks_after_open_brace and +# eat_blanks_before_close_brace, but is ignored when +# nl_collapse_empty_body_functions=true +nl_inside_empty_func = 0 # unsigned number + +# The number of newlines before a function prototype. +nl_before_func_body_proto = 0 # unsigned number + +# The number of newlines before a multi-line function definition. Where +# applicable, this option is overridden with eat_blanks_after_open_brace=true +nl_before_func_body_def = 0 # unsigned number + +# The number of newlines before a class constructor/destructor prototype. +nl_before_func_class_proto = 0 # unsigned number + +# The number of newlines before a class constructor/destructor definition. +nl_before_func_class_def = 0 # unsigned number + +# The number of newlines after a function prototype. +nl_after_func_proto = 0 # unsigned number + +# The number of newlines after a function prototype, if not followed by +# another function prototype. +nl_after_func_proto_group = 0 # unsigned number + +# The number of newlines after a class constructor/destructor prototype. +nl_after_func_class_proto = 0 # unsigned number + +# The number of newlines after a class constructor/destructor prototype, +# if not followed by another constructor/destructor prototype. +nl_after_func_class_proto_group = 0 # unsigned number + +# Whether one-line method definitions inside a class body should be treated +# as if they were prototypes for the purposes of adding newlines. +# +# Requires nl_class_leave_one_liners=true. Overrides nl_before_func_body_def +# and nl_before_func_class_def for one-liners. +nl_class_leave_one_liner_groups = false # true/false + +# The number of newlines after '}' of a multi-line function body. +nl_after_func_body = 0 # unsigned number + +# The number of newlines after '}' of a multi-line function body in a class +# declaration. Also affects class constructors/destructors. +# +# Overrides nl_after_func_body. +nl_after_func_body_class = 0 # unsigned number + +# The number of newlines after '}' of a single line function body. Also +# affects class constructors/destructors. +# +# Overrides nl_after_func_body and nl_after_func_body_class. +nl_after_func_body_one_liner = 0 # unsigned number + +# The number of newlines before a block of typedefs. If nl_after_access_spec +# is non-zero, that option takes precedence. +# +# 0: No change (default). +nl_typedef_blk_start = 0 # unsigned number + +# The number of newlines after a block of typedefs. +# +# 0: No change (default). +nl_typedef_blk_end = 0 # unsigned number + +# The maximum number of consecutive newlines within a block of typedefs. +# +# 0: No change (default). +nl_typedef_blk_in = 0 # unsigned number + +# The minimum number of blank lines after a block of variable definitions +# at the top of a function body. If any preprocessor directives appear +# between the opening brace of the function and the variable block, then +# it is considered as not at the top of the function.Newlines are added +# before trailing preprocessor directives, if any exist. +# +# 0: No change (default). +nl_var_def_blk_end_func_top = 0 # unsigned number + +# The minimum number of empty newlines before a block of variable definitions +# not at the top of a function body. If nl_after_access_spec is non-zero, +# that option takes precedence. Newlines are not added at the top of the +# file or just after an opening brace. Newlines are added above any +# preprocessor directives before the block. +# +# 0: No change (default). +nl_var_def_blk_start = 0 # unsigned number + +# The minimum number of empty newlines after a block of variable definitions +# not at the top of a function body. Newlines are not added if the block +# is at the bottom of the file or just before a preprocessor directive. +# +# 0: No change (default). +nl_var_def_blk_end = 0 # unsigned number + +# The maximum number of consecutive newlines within a block of variable +# definitions. +# +# 0: No change (default). +nl_var_def_blk_in = 0 # unsigned number + +# The minimum number of newlines before a multi-line comment. +# Doesn't apply if after a brace open or another multi-line comment. +nl_before_block_comment = 0 # unsigned number + +# The minimum number of newlines before a single-line C comment. +# Doesn't apply if after a brace open or other single-line C comments. +nl_before_c_comment = 0 # unsigned number + +# The minimum number of newlines before a CPP comment. +# Doesn't apply if after a brace open or other CPP comments. +nl_before_cpp_comment = 0 # unsigned number + +# Whether to force a newline after a multi-line comment. +nl_after_multiline_comment = false # true/false + +# Whether to force a newline after a label's colon. +nl_after_label_colon = false # true/false + +# The number of newlines before a struct definition. +nl_before_struct = 0 # unsigned number + +# The number of newlines after '}' or ';' of a struct/enum/union definition. +nl_after_struct = 0 # unsigned number + +# The number of newlines before a class definition. +nl_before_class = 0 # unsigned number + +# The number of newlines after '}' or ';' of a class definition. +nl_after_class = 0 # unsigned number + +# The number of newlines before a namespace. +nl_before_namespace = 0 # unsigned number + +# The number of newlines after '{' of a namespace. This also adds newlines +# before the matching '}'. +# +# 0: Apply eat_blanks_after_open_brace or eat_blanks_before_close_brace if +# applicable, otherwise no change. +# +# Overrides eat_blanks_after_open_brace and eat_blanks_before_close_brace. +nl_inside_namespace = 0 # unsigned number + +# The number of newlines after '}' of a namespace. +nl_after_namespace = 0 # unsigned number + +# The number of newlines before an access specifier label. This also includes +# the Qt-specific 'signals:' and 'slots:'. Will not change the newline count +# if after a brace open. +# +# 0: No change (default). +nl_before_access_spec = 0 # unsigned number + +# The number of newlines after an access specifier label. This also includes +# the Qt-specific 'signals:' and 'slots:'. Will not change the newline count +# if after a brace open. +# +# 0: No change (default). +# +# Overrides nl_typedef_blk_start and nl_var_def_blk_start. +nl_after_access_spec = 0 # unsigned number + +# The number of newlines between a function definition and the function +# comment, as in '// comment\n <here> void foo() {...}'. +# +# 0: No change (default). +nl_comment_func_def = 0 # unsigned number + +# The number of newlines after a try-catch-finally block that isn't followed +# by a brace close. +# +# 0: No change (default). +nl_after_try_catch_finally = 0 # unsigned number + +# (C#) The number of newlines before and after a property, indexer or event +# declaration. +# +# 0: No change (default). +nl_around_cs_property = 0 # unsigned number + +# (C#) The number of newlines between the get/set/add/remove handlers. +# +# 0: No change (default). +nl_between_get_set = 0 # unsigned number + +# (C#) Add or remove newline between property and the '{'. +nl_property_brace = ignore # ignore/add/remove/force/not_defined + +# Whether to remove blank lines after '{'. +eat_blanks_after_open_brace = true # true/false + +# Whether to remove blank lines before '}'. +eat_blanks_before_close_brace = true # true/false + +# How aggressively to remove extra newlines not in preprocessor. +# +# 0: No change (default) +# 1: Remove most newlines not handled by other config +# 2: Remove all newlines and reformat completely by config +nl_remove_extra_newlines = 0 # unsigned number + +# (Java) Add or remove newline after an annotation statement. Only affects +# annotations that are after a newline. +nl_after_annotation = ignore # ignore/add/remove/force/not_defined + +# (Java) Add or remove newline between two annotations. +nl_between_annotation = ignore # ignore/add/remove/force/not_defined + +# The number of newlines before a whole-file #ifdef. +# +# 0: No change (default). +nl_before_whole_file_ifdef = 0 # unsigned number + +# The number of newlines after a whole-file #ifdef. +# +# 0: No change (default). +nl_after_whole_file_ifdef = 0 # unsigned number + +# The number of newlines before a whole-file #endif. +# +# 0: No change (default). +nl_before_whole_file_endif = 0 # unsigned number + +# The number of newlines after a whole-file #endif. +# +# 0: No change (default). +nl_after_whole_file_endif = 0 # unsigned number + +# +# Positioning options +# + +# The position of arithmetic operators in wrapped expressions. +pos_arith = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of assignment in wrapped expressions. Do not affect '=' +# followed by '{'. +pos_assign = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of Boolean operators in wrapped expressions. +pos_bool = lead # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of comparison operators in wrapped expressions. +pos_compare = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of conditional operators, as in the '?' and ':' of +# 'expr ? stmt : stmt', in wrapped expressions. +pos_conditional = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in wrapped expressions. +pos_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in enum entries. +pos_enum_comma = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in the base class list if there is more than one +# line. Affects nl_class_init_args. +pos_class_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of the comma in the constructor initialization list. +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_colon. +pos_constr_comma = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of trailing/leading class colon, between class and base class +# list. Affects nl_class_colon. +pos_class_colon = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of colons between constructor and member initialization. +# Related to nl_constr_colon, nl_constr_init_args and pos_constr_comma. +pos_constr_colon = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# The position of shift operators in wrapped expressions. +pos_shift = ignore # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force + +# +# Line splitting options +# + +# Try to limit code width to N columns. +code_width = 100 # unsigned number + +# Whether to fully split long 'for' statements at semi-colons. +ls_for_split_full = false # true/false + +# Whether to fully split long function prototypes/calls at commas. +# The option ls_code_width has priority over the option ls_func_split_full. +ls_func_split_full = false # true/false + +# Whether to split lines as close to code_width as possible and ignore some +# groupings. +# The option ls_code_width has priority over the option ls_func_split_full. +ls_code_width = false # true/false + +# +# Code alignment options (not left column spaces/tabs) +# + +# Whether to keep non-indenting tabs. +align_keep_tabs = false # true/false + +# Whether to use tabs for aligning. +align_with_tabs = false # true/false + +# Whether to bump out to the next tab when aligning. +align_on_tabstop = false # true/false + +# Whether to right-align numbers. +align_number_right = false # true/false + +# Whether to keep whitespace not required for alignment. +align_keep_extra_space = false # true/false + +# Whether to align variable definitions in prototypes and functions. +align_func_params = false # true/false + +# The span for aligning parameter definitions in function on parameter name. +# +# 0: Don't align (default). +align_func_params_span = 0 # unsigned number + +# The threshold for aligning function parameter definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_func_params_thresh = 0 # number + +# The gap for aligning function parameter definitions. +align_func_params_gap = 0 # unsigned number + +# The span for aligning constructor value. +# +# 0: Don't align (default). +align_constr_value_span = 0 # unsigned number + +# The threshold for aligning constructor value. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_constr_value_thresh = 0 # number + +# The gap for aligning constructor value. +align_constr_value_gap = 0 # unsigned number + +# Whether to align parameters in single-line functions that have the same +# name. The function names must already be aligned with each other. +align_same_func_call_params = false # true/false + +# The span for aligning function-call parameters for single line functions. +# +# 0: Don't align (default). +align_same_func_call_params_span = 0 # unsigned number + +# The threshold for aligning function-call parameters for single line +# functions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_same_func_call_params_thresh = 0 # number + +# The span for aligning variable definitions. +# +# 0: Don't align (default). +align_var_def_span = 0 # unsigned number + +# How to consider (or treat) the '*' in the alignment of variable definitions. +# +# 0: Part of the type 'void * foo;' (default) +# 1: Part of the variable 'void *foo;' +# 2: Dangling 'void *foo;' +# Dangling: the '*' will not be taken into account when aligning. +align_var_def_star_style = 0 # unsigned number + +# How to consider (or treat) the '&' in the alignment of variable definitions. +# +# 0: Part of the type 'long & foo;' (default) +# 1: Part of the variable 'long &foo;' +# 2: Dangling 'long &foo;' +# Dangling: the '&' will not be taken into account when aligning. +align_var_def_amp_style = 0 # unsigned number + +# The threshold for aligning variable definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_def_thresh = 0 # number + +# The gap for aligning variable definitions. +align_var_def_gap = 0 # unsigned number + +# Whether to align the colon in struct bit fields. +align_var_def_colon = false # true/false + +# The gap for aligning the colon in struct bit fields. +align_var_def_colon_gap = 0 # unsigned number + +# Whether to align any attribute after the variable name. +align_var_def_attribute = false # true/false + +# Whether to align inline struct/enum/union variable definitions. +align_var_def_inline = false # true/false + +# The span for aligning on '=' in assignments. +# +# 0: Don't align (default). +align_assign_span = 0 # unsigned number + +# The span for aligning on '=' in function prototype modifier. +# +# 0: Don't align (default). +align_assign_func_proto_span = 0 # unsigned number + +# The threshold for aligning on '=' in assignments. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_assign_thresh = 0 # number + +# Whether to align on the left most assignment when multiple +# definitions are found on the same line. +# Depends on 'align_assign_span' and 'align_assign_thresh' settings. +align_assign_on_multi_var_defs = false # true/false + +# The span for aligning on '{' in braced init list. +# +# 0: Don't align (default). +align_braced_init_list_span = 0 # unsigned number + +# The threshold for aligning on '{' in braced init list. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_braced_init_list_thresh = 0 # number + +# How to apply align_assign_span to function declaration "assignments", i.e. +# 'virtual void foo() = 0' or '~foo() = {default|delete}'. +# +# 0: Align with other assignments (default) +# 1: Align with each other, ignoring regular assignments +# 2: Don't align +align_assign_decl_func = 0 # unsigned number + +# The span for aligning on '=' in enums. +# +# 0: Don't align (default). +align_enum_equ_span = 0 # unsigned number + +# The threshold for aligning on '=' in enums. +# Use a negative number for absolute thresholds. +# +# 0: no limit (default). +align_enum_equ_thresh = 0 # number + +# The span for aligning class member definitions. +# +# 0: Don't align (default). +align_var_class_span = 0 # unsigned number + +# The threshold for aligning class member definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_class_thresh = 0 # number + +# The gap for aligning class member definitions. +align_var_class_gap = 0 # unsigned number + +# The span for aligning struct/union member definitions. +# +# 0: Don't align (default). +align_var_struct_span = 0 # unsigned number + +# The threshold for aligning struct/union member definitions. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_var_struct_thresh = 0 # number + +# The gap for aligning struct/union member definitions. +align_var_struct_gap = 0 # unsigned number + +# The span for aligning struct initializer values. +# +# 0: Don't align (default). +align_struct_init_span = 0 # unsigned number + +# The span for aligning single-line typedefs. +# +# 0: Don't align (default). +align_typedef_span = 0 # unsigned number + +# The minimum space between the type and the synonym of a typedef. +align_typedef_gap = 0 # unsigned number + +# How to align typedef'd functions with other typedefs. +# +# 0: Don't mix them at all (default) +# 1: Align the open parenthesis with the types +# 2: Align the function type name with the other type names +align_typedef_func = 0 # unsigned number + +# How to consider (or treat) the '*' in the alignment of typedefs. +# +# 0: Part of the typedef type, 'typedef int * pint;' (default) +# 1: Part of type name: 'typedef int *pint;' +# 2: Dangling: 'typedef int *pint;' +# Dangling: the '*' will not be taken into account when aligning. +align_typedef_star_style = 0 # unsigned number + +# How to consider (or treat) the '&' in the alignment of typedefs. +# +# 0: Part of the typedef type, 'typedef int & intref;' (default) +# 1: Part of type name: 'typedef int &intref;' +# 2: Dangling: 'typedef int &intref;' +# Dangling: the '&' will not be taken into account when aligning. +align_typedef_amp_style = 0 # unsigned number + +# The span for aligning comments that end lines. +# +# 0: Don't align (default). +align_right_cmt_span = 0 # unsigned number + +# Minimum number of columns between preceding text and a trailing comment in +# order for the comment to qualify for being aligned. Must be non-zero to have +# an effect. +align_right_cmt_gap = 0 # unsigned number + +# If aligning comments, whether to mix with comments after '}' and #endif with +# less than three spaces before the comment. +align_right_cmt_mix = false # true/false + +# Whether to only align trailing comments that are at the same brace level. +align_right_cmt_same_level = false # true/false + +# Minimum column at which to align trailing comments. Comments which are +# aligned beyond this column, but which can be aligned in a lesser column, +# may be "pulled in". +# +# 0: Ignore (default). +align_right_cmt_at_col = 0 # unsigned number + +# The span for aligning function prototypes. +# +# 0: Don't align (default). +align_func_proto_span = 0 # unsigned number + +# How to consider (or treat) the '*' in the alignment of function prototypes. +# +# 0: Part of the type 'void * foo();' (default) +# 1: Part of the function 'void *foo();' +# 2: Dangling 'void *foo();' +# Dangling: the '*' will not be taken into account when aligning. +align_func_proto_star_style = 0 # unsigned number + +# How to consider (or treat) the '&' in the alignment of function prototypes. +# +# 0: Part of the type 'long & foo();' (default) +# 1: Part of the function 'long &foo();' +# 2: Dangling 'long &foo();' +# Dangling: the '&' will not be taken into account when aligning. +align_func_proto_amp_style = 0 # unsigned number + +# The threshold for aligning function prototypes. +# Use a negative number for absolute thresholds. +# +# 0: No limit (default). +align_func_proto_thresh = 0 # number + +# Minimum gap between the return type and the function name. +align_func_proto_gap = 0 # unsigned number + +# Whether to align function prototypes on the 'operator' keyword instead of +# what follows. +align_on_operator = false # true/false + +# Whether to mix aligning prototype and variable declarations. If true, +# align_var_def_XXX options are used instead of align_func_proto_XXX options. +align_mix_var_proto = false # true/false + +# Whether to align single-line functions with function prototypes. +# Uses align_func_proto_span. +align_single_line_func = false # true/false + +# Whether to align the open brace of single-line functions. +# Requires align_single_line_func=true. Uses align_func_proto_span. +align_single_line_brace = false # true/false + +# Gap for align_single_line_brace. +align_single_line_brace_gap = 0 # unsigned number + +# (OC) The span for aligning Objective-C message specifications. +# +# 0: Don't align (default). +align_oc_msg_spec_span = 0 # unsigned number + +# Whether and how to align backslashes that split a macro onto multiple lines. +# This will not work right if the macro contains a multi-line comment. +# +# 0: Do nothing (default) +# 1: Align the backslashes in the column at the end of the longest line +# 2: Align with the backslash that is farthest to the left, or, if that +# backslash is farther left than the end of the longest line, at the end of +# the longest line +# 3: Align with the backslash that is farthest to the right +align_nl_cont = 0 # unsigned number + +# Whether to align macro functions and variables together. +align_pp_define_together = false # true/false + +# The span for aligning on '#define' bodies. +# +# =0: Don't align (default) +# >0: Number of lines (including comments) between blocks +align_pp_define_span = 0 # unsigned number + +# The minimum space between label and value of a preprocessor define. +align_pp_define_gap = 0 # unsigned number + +# Whether to align lines that start with '<<' with previous '<<'. +# +# Default: true +align_left_shift = true # true/false + +# Whether to align comma-separated statements following '<<' (as used to +# initialize Eigen matrices). +align_eigen_comma_init = false # true/false + +# Whether to align text after 'asm volatile ()' colons. +align_asm_colon = false # true/false + +# (OC) Span for aligning parameters in an Objective-C message call +# on the ':'. +# +# 0: Don't align. +align_oc_msg_colon_span = 0 # unsigned number + +# (OC) Whether to always align with the first parameter, even if it is too +# short. +align_oc_msg_colon_first = false # true/false + +# (OC) Whether to align parameters in an Objective-C '+' or '-' declaration +# on the ':'. +align_oc_decl_colon = false # true/false + +# (OC) Whether to not align parameters in an Objectve-C message call if first +# colon is not on next line of the message call (the same way Xcode does +# alignment) +align_oc_msg_colon_xcode_like = false # true/false + +# +# Comment modification options +# + +# Try to wrap comments at N columns. +cmt_width = 0 # unsigned number + +# How to reflow comments. +# +# 0: No reflowing (apart from the line wrapping due to cmt_width) (default) +# 1: No touching at all +# 2: Full reflow (enable cmt_indent_multi for indent with line wrapping due to cmt_width) +cmt_reflow_mode = 0 # unsigned number + +# Path to a file that contains regular expressions describing patterns for +# which the end of one line and the beginning of the next will be folded into +# the same sentence or paragraph during full comment reflow. The regular +# expressions are described using ECMAScript syntax. The syntax for this +# specification is as follows, where "..." indicates the custom regular +# expression and "n" indicates the nth end_of_prev_line_regex and +# beg_of_next_line_regex regular expression pair: +# +# end_of_prev_line_regex[1] = "...$" +# beg_of_next_line_regex[1] = "^..." +# end_of_prev_line_regex[2] = "...$" +# beg_of_next_line_regex[2] = "^..." +# . +# . +# . +# end_of_prev_line_regex[n] = "...$" +# beg_of_next_line_regex[n] = "^..." +# +# Note that use of this option overrides the default reflow fold regular +# expressions, which are internally defined as follows: +# +# end_of_prev_line_regex[1] = "[\w,\]\)]$" +# beg_of_next_line_regex[1] = "^[\w,\[\(]" +# end_of_prev_line_regex[2] = "\.$" +# beg_of_next_line_regex[2] = "^[A-Z]" +cmt_reflow_fold_regex_file = "" # string + +# Whether to indent wrapped lines to the start of the encompassing paragraph +# during full comment reflow (cmt_reflow_mode = 2). Overrides the value +# specified by cmt_sp_after_star_cont. +# +# Note that cmt_align_doxygen_javadoc_tags overrides this option for +# paragraphs associated with javadoc tags +cmt_reflow_indent_to_paragraph_start = false # true/false + +# Whether to convert all tabs to spaces in comments. If false, tabs in +# comments are left alone, unless used for indenting. +cmt_convert_tab_to_spaces = true # true/false + +# Whether to apply changes to multi-line comments, including cmt_width, +# keyword substitution and leading chars. +# +# Default: true +cmt_indent_multi = true # true/false + +# Whether to align doxygen javadoc-style tags ('@param', '@return', etc.) +# and corresponding fields such that groups of consecutive block tags, +# parameter names, and descriptions align with one another. Overrides that +# which is specified by the cmt_sp_after_star_cont. If cmt_width > 0, it may +# be necessary to enable cmt_indent_multi and set cmt_reflow_mode = 2 +# in order to achieve the desired alignment for line-wrapping. +cmt_align_doxygen_javadoc_tags = false # true/false + +# The number of spaces to insert after the star and before doxygen +# javadoc-style tags (@param, @return, etc). Requires enabling +# cmt_align_doxygen_javadoc_tags. Overrides that which is specified by the +# cmt_sp_after_star_cont. +# +# Default: 1 +cmt_sp_before_doxygen_javadoc_tags = 1 # unsigned number + +# Whether to change trailing, single-line c-comments into cpp-comments. +cmt_trailing_single_line_c_to_cpp = true # true/false + +# Whether to group c-comments that look like they are in a block. +cmt_c_group = false # true/false + +# Whether to put an empty '/*' on the first line of the combined c-comment. +cmt_c_nl_start = false # true/false + +# Whether to add a newline before the closing '*/' of the combined c-comment. +cmt_c_nl_end = false # true/false + +# Whether to change cpp-comments into c-comments. +cmt_cpp_to_c = false # true/false + +# Whether to group cpp-comments that look like they are in a block. Only +# meaningful if cmt_cpp_to_c=true. +cmt_cpp_group = false # true/false + +# Whether to put an empty '/*' on the first line of the combined cpp-comment +# when converting to a c-comment. +# +# Requires cmt_cpp_to_c=true and cmt_cpp_group=true. +cmt_cpp_nl_start = false # true/false + +# Whether to add a newline before the closing '*/' of the combined cpp-comment +# when converting to a c-comment. +# +# Requires cmt_cpp_to_c=true and cmt_cpp_group=true. +cmt_cpp_nl_end = false # true/false + +# Whether to put a star on subsequent comment lines. +cmt_star_cont = false # true/false + +# The number of spaces to insert at the start of subsequent comment lines. +cmt_sp_before_star_cont = 0 # unsigned number + +# The number of spaces to insert after the star on subsequent comment lines. +cmt_sp_after_star_cont = 0 # unsigned number + +# For multi-line comments with a '*' lead, remove leading spaces if the first +# and last lines of the comment are the same length. +# +# Default: true +cmt_multi_check_last = true # true/false + +# For multi-line comments with a '*' lead, remove leading spaces if the first +# and last lines of the comment are the same length AND if the length is +# bigger as the first_len minimum. +# +# Default: 4 +cmt_multi_first_len_minimum = 4 # unsigned number + +# Path to a file that contains text to insert at the beginning of a file if +# the file doesn't start with a C/C++ comment. If the inserted text contains +# '$(filename)', that will be replaced with the current file's name. +cmt_insert_file_header = "" # string + +# Path to a file that contains text to insert at the end of a file if the +# file doesn't end with a C/C++ comment. If the inserted text contains +# '$(filename)', that will be replaced with the current file's name. +cmt_insert_file_footer = "" # string + +# Path to a file that contains text to insert before a function definition if +# the function isn't preceded by a C/C++ comment. If the inserted text +# contains '$(function)', '$(javaparam)' or '$(fclass)', these will be +# replaced with, respectively, the name of the function, the javadoc '@param' +# and '@return' stuff, or the name of the class to which the member function +# belongs. +cmt_insert_func_header = "" # string + +# Path to a file that contains text to insert before a class if the class +# isn't preceded by a C/C++ comment. If the inserted text contains '$(class)', +# that will be replaced with the class name. +cmt_insert_class_header = "" # string + +# Path to a file that contains text to insert before an Objective-C message +# specification, if the method isn't preceded by a C/C++ comment. If the +# inserted text contains '$(message)' or '$(javaparam)', these will be +# replaced with, respectively, the name of the function, or the javadoc +# '@param' and '@return' stuff. +cmt_insert_oc_msg_header = "" # string + +# Whether a comment should be inserted if a preprocessor is encountered when +# stepping backwards from a function name. +# +# Applies to cmt_insert_oc_msg_header, cmt_insert_func_header and +# cmt_insert_class_header. +cmt_insert_before_preproc = false # true/false + +# Whether a comment should be inserted if a function is declared inline to a +# class definition. +# +# Applies to cmt_insert_func_header. +# +# Default: true +cmt_insert_before_inlines = true # true/false + +# Whether a comment should be inserted if the function is a class constructor +# or destructor. +# +# Applies to cmt_insert_func_header. +cmt_insert_before_ctor_dtor = false # true/false + +# +# Code modifying options (non-whitespace) +# + +# Add or remove braces on a single-line 'do' statement. +mod_full_brace_do = add # ignore/add/remove/force/not_defined + +# Add or remove braces on a single-line 'for' statement. +mod_full_brace_for = add # ignore/add/remove/force/not_defined + +# (Pawn) Add or remove braces on a single-line function definition. +mod_full_brace_function = ignore # ignore/add/remove/force/not_defined + +# Add or remove braces on a single-line 'if' statement. Braces will not be +# removed if the braced statement contains an 'else'. +mod_full_brace_if = add # ignore/add/remove/force/not_defined + +# Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either +# have, or do not have, braces. Overrides mod_full_brace_if. +# +# 0: Don't override mod_full_brace_if +# 1: Add braces to all blocks if any block needs braces and remove braces if +# they can be removed from all blocks +# 2: Add braces to all blocks if any block already has braces, regardless of +# whether it needs them +# 3: Add braces to all blocks if any block needs braces and remove braces if +# they can be removed from all blocks, except if all blocks have braces +# despite none needing them +mod_full_brace_if_chain = 0 # unsigned number + +# Whether to add braces to all blocks of an 'if'/'else if'/'else' chain. +# If true, mod_full_brace_if_chain will only remove braces from an 'if' that +# does not have an 'else if' or 'else'. +mod_full_brace_if_chain_only = false # true/false + +# Add or remove braces on single-line 'while' statement. +mod_full_brace_while = add # ignore/add/remove/force/not_defined + +# Add or remove braces on single-line 'using ()' statement. +mod_full_brace_using = ignore # ignore/add/remove/force/not_defined + +# Don't remove braces around statements that span N newlines +mod_full_brace_nl = 0 # unsigned number + +# Whether to prevent removal of braces from 'if'/'for'/'while'/etc. blocks +# which span multiple lines. +# +# Affects: +# mod_full_brace_for +# mod_full_brace_if +# mod_full_brace_if_chain +# mod_full_brace_if_chain_only +# mod_full_brace_while +# mod_full_brace_using +# +# Does not affect: +# mod_full_brace_do +# mod_full_brace_function +mod_full_brace_nl_block_rem_mlcond = false # true/false + +# Add or remove unnecessary parentheses on 'return' statement. +mod_paren_on_return = ignore # ignore/add/remove/force/not_defined + +# Add or remove unnecessary parentheses on 'throw' statement. +mod_paren_on_throw = ignore # ignore/add/remove/force/not_defined + +# (Pawn) Whether to change optional semicolons to real semicolons. +mod_pawn_semicolon = false # true/false + +# Whether to fully parenthesize Boolean expressions in 'while' and 'if' +# statement, as in 'if (a && b > c)' => 'if (a && (b > c))'. +mod_full_paren_if_bool = false # true/false + +# Whether to fully parenthesize Boolean expressions after '=' +# statement, as in 'x = a && b > c;' => 'x = (a && (b > c));'. +mod_full_paren_assign_bool = false # true/false + +# Whether to fully parenthesize Boolean expressions after '=' +# statement, as in 'return a && b > c;' => 'return (a && (b > c));'. +mod_full_paren_return_bool = false # true/false + +# Whether to remove superfluous semicolons. +mod_remove_extra_semicolon = true # true/false + +# Whether to remove duplicate include. +mod_remove_duplicate_include = true # true/false + +# the following options (mod_XX_closebrace_comment) use different comment, +# depending of the setting of the next option. +# false: Use the c comment (default) +# true : Use the cpp comment +mod_add_force_c_closebrace_comment = false # true/false + +# If a function body exceeds the specified number of newlines and doesn't have +# a comment after the close brace, a comment will be added. +mod_add_long_function_closebrace_comment = 0 # unsigned number + +# If a namespace body exceeds the specified number of newlines and doesn't +# have a comment after the close brace, a comment will be added. +mod_add_long_namespace_closebrace_comment = 0 # unsigned number + +# If a class body exceeds the specified number of newlines and doesn't have a +# comment after the close brace, a comment will be added. +mod_add_long_class_closebrace_comment = 0 # unsigned number + +# If a switch body exceeds the specified number of newlines and doesn't have a +# comment after the close brace, a comment will be added. +mod_add_long_switch_closebrace_comment = 0 # unsigned number + +# If an #ifdef body exceeds the specified number of newlines and doesn't have +# a comment after the #endif, a comment will be added. +mod_add_long_ifdef_endif_comment = 0 # unsigned number + +# If an #ifdef or #else body exceeds the specified number of newlines and +# doesn't have a comment after the #else, a comment will be added. +mod_add_long_ifdef_else_comment = 0 # unsigned number + +# Whether to take care of the case by the mod_sort_xx options. +mod_sort_case_sensitive = false # true/false + +# Whether to sort consecutive single-line 'import' statements. +mod_sort_import = false # true/false + +# (C#) Whether to sort consecutive single-line 'using' statements. +mod_sort_using = false # true/false + +# Whether to sort consecutive single-line '#include' statements (C/C++) and +# '#import' statements (Objective-C). Be aware that this has the potential to +# break your code if your includes/imports have ordering dependencies. +mod_sort_include = true # true/false + +# Whether to prioritize '#include' and '#import' statements that contain +# filename without extension when sorting is enabled. +mod_sort_incl_import_prioritize_filename = false # true/false + +# Whether to prioritize '#include' and '#import' statements that does not +# contain extensions when sorting is enabled. +mod_sort_incl_import_prioritize_extensionless = false # true/false + +# Whether to prioritize '#include' and '#import' statements that contain +# angle over quotes when sorting is enabled. +mod_sort_incl_import_prioritize_angle_over_quotes = true # true/false + +# Whether to ignore file extension in '#include' and '#import' statements +# for sorting comparison. +mod_sort_incl_import_ignore_extension = false # true/false + +# Whether to group '#include' and '#import' statements when sorting is enabled. +mod_sort_incl_import_grouping_enabled = true # true/false + +# Whether to move a 'break' that appears after a fully braced 'case' before +# the close brace, as in 'case X: { ... } break;' => 'case X: { ... break; }'. +mod_move_case_break = false # true/false + +# Whether to move a 'return' that appears after a fully braced 'case' before +# the close brace, as in 'case X: { ... } return;' => 'case X: { ... return; }'. +mod_move_case_return = false # true/false + +# Add or remove braces around a fully braced case statement. Will only remove +# braces if there are no variable declarations in the block. +mod_case_brace = ignore # ignore/add/remove/force/not_defined + +# Whether to remove a void 'return;' that appears as the last statement in a +# function. +mod_remove_empty_return = false # true/false + +# Add or remove the comma after the last value of an enumeration. +mod_enum_last_comma = add # ignore/add/remove/force/not_defined + +# Syntax to use for infinite loops. +# +# 0: Leave syntax alone (default) +# 1: Rewrite as `for(;;)` +# 2: Rewrite as `while(true)` +# 3: Rewrite as `do`...`while(true);` +# 4: Rewrite as `while(1)` +# 5: Rewrite as `do`...`while(1);` +# +# Infinite loops that do not already match one of these syntaxes are ignored. +# Other options that affect loop formatting will be applied after transforming +# the syntax. +mod_infinite_loop = 2 # unsigned number + +# Add or remove the 'int' keyword in 'int short'. +mod_int_short = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'short int'. +mod_short_int = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'int long'. +mod_int_long = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'long int'. +mod_long_int = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'int signed'. +mod_int_signed = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'signed int'. +mod_signed_int = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'int unsigned'. +mod_int_unsigned = remove # ignore/add/remove/force/not_defined + +# Add or remove the 'int' keyword in 'unsigned int'. +mod_unsigned_int = remove # ignore/add/remove/force/not_defined + +# If there is a situation where mod_int_* and mod_*_int would result in +# multiple int keywords, whether to keep the rightmost int (the default) or the +# leftmost int. +mod_int_prefer_int_on_left = false # true/false + +# (OC) Whether to organize the properties. If true, properties will be +# rearranged according to the mod_sort_oc_property_*_weight factors. +mod_sort_oc_properties = false # true/false + +# (OC) Weight of a class property modifier. +mod_sort_oc_property_class_weight = 0 # number + +# (OC) Weight of 'atomic' and 'nonatomic'. +mod_sort_oc_property_thread_safe_weight = 0 # number + +# (OC) Weight of 'readwrite' when organizing properties. +mod_sort_oc_property_readwrite_weight = 0 # number + +# (OC) Weight of a reference type specifier ('retain', 'copy', 'assign', +# 'weak', 'strong') when organizing properties. +mod_sort_oc_property_reference_weight = 0 # number + +# (OC) Weight of getter type ('getter=') when organizing properties. +mod_sort_oc_property_getter_weight = 0 # number + +# (OC) Weight of setter type ('setter=') when organizing properties. +mod_sort_oc_property_setter_weight = 0 # number + +# (OC) Weight of nullability type ('nullable', 'nonnull', 'null_unspecified', +# 'null_resettable') when organizing properties. +mod_sort_oc_property_nullability_weight = 0 # number + +# +# Preprocessor options +# + +# How to use tabs when indenting preprocessor code. +# +# -1: Use 'indent_with_tabs' setting (default) +# 0: Spaces only +# 1: Indent with tabs to brace level, align with spaces +# 2: Indent and align with tabs, using spaces when not on a tabstop +# +# Default: -1 +pp_indent_with_tabs = -1 # number + +# Add or remove indentation of preprocessor directives inside #if blocks +# at brace level 0 (file-level). +pp_indent = remove # ignore/add/remove/force/not_defined + +# Whether to indent #if/#else/#endif at the brace level. If false, these are +# indented from column 1. +pp_indent_at_level = false # true/false + +# Whether to indent #if/#else/#endif at the parenthesis level if the brace +# level is 0. If false, these are indented from column 1. +pp_indent_at_level0 = false # true/false + +# Specifies the number of columns to indent preprocessors per level +# at brace level 0 (file-level). If pp_indent_at_level=false, also specifies +# the number of columns to indent preprocessors per level +# at brace level > 0 (function-level). +# +# Default: 1 +pp_indent_count = 1 # unsigned number + +# Add or remove space after # based on pp level of #if blocks. +pp_space_after = force # ignore/add/remove/force/not_defined + +# Sets the number of spaces per level added with pp_space_after. +pp_space_count = 1 # unsigned number + +# The indent for '#region' and '#endregion' in C# and '#pragma region' in +# C/C++. Negative values decrease indent down to the first column. +pp_indent_region = 0 # number + +# Whether to indent the code between #region and #endregion. +pp_region_indent_code = false # true/false + +# If pp_indent_at_level=true, sets the indent for #if, #else and #endif when +# not at file-level. Negative values decrease indent down to the first column. +# +# =0: Indent preprocessors using output_tab_size +# >0: Column at which all preprocessors will be indented +pp_indent_if = 0 # number + +# Whether to indent the code between #if, #else and #endif. +pp_if_indent_code = false # true/false + +# Whether to indent the body of an #if that encompasses all the code in the file. +pp_indent_in_guard = false # true/false + +# Whether to indent '#define' at the brace level. If false, these are +# indented from column 1. +pp_define_at_level = false # true/false + +# Whether to indent '#include' at the brace level. +pp_include_at_level = false # true/false + +# Whether to ignore the '#define' body while formatting. +pp_ignore_define_body = false # true/false + +# An offset value that controls the indentation of the body of a multiline #define. +# 'body' refers to all the lines of a multiline #define except the first line. +# Requires 'pp_ignore_define_body = false'. +# +# <0: Absolute column: the body indentation starts off at the specified column +# (ex. -3 ==> the body is indented starting from column 3) +# >=0: Relative to the column of the '#' of '#define' +# (ex. 3 ==> the body is indented starting 3 columns at the right of '#') +# +# Default: 8 +pp_multiline_define_body_indent = 2 # number + +# Whether to indent case statements between #if, #else, and #endif. +# Only applies to the indent of the preprocessor that the case statements +# directly inside of. +# +# Default: true +pp_indent_case = true # true/false + +# Whether to indent whole function definitions between #if, #else, and #endif. +# Only applies to the indent of the preprocessor that the function definition +# is directly inside of. +# +# Default: true +pp_indent_func_def = true # true/false + +# Whether to indent extern C blocks between #if, #else, and #endif. +# Only applies to the indent of the preprocessor that the extern block is +# directly inside of. +# +# Default: true +pp_indent_extern = true # true/false + +# How to indent braces directly inside #if, #else, and #endif. +# Requires pp_if_indent_code=true and only applies to the indent of the +# preprocessor that the braces are directly inside of. +# 0: No extra indent +# 1: Indent by one level +# -1: Preserve original indentation +# +# Default: 1 +pp_indent_brace = 1 # number + +# Whether to print warning messages for unbalanced #if and #else blocks. +# This will print a message in the following cases: +# - if an #ifdef block ends on a different indent level than +# where it started from. Example: +# +# #ifdef TEST +# int i; +# { +# int j; +# #endif +# +# - an #elif/#else block ends on a different indent level than +# the corresponding #ifdef block. Example: +# +# #ifdef TEST +# int i; +# #else +# } +# int j; +# #endif +pp_warn_unbalanced_if = false # true/false + +# +# Sort includes options +# + +# The regex for include category with priority 0. +include_category_0 = "" # string + +# The regex for include category with priority 1. +include_category_1 = "" # string + +# The regex for include category with priority 2. +include_category_2 = "" # string + +# +# Use or Do not Use options +# + +# true: indent_func_call_param will be used (default) +# false: indent_func_call_param will NOT be used +# +# Default: true +use_indent_func_call_param = true # true/false + +# The value of the indentation for a continuation line is calculated +# differently if the statement is: +# - a declaration: your case with QString fileName ... +# - an assignment: your case with pSettings = new QSettings( ... +# +# At the second case the indentation value might be used twice: +# - at the assignment +# - at the function call (if present) +# +# To prevent the double use of the indentation value, use this option with the +# value 'true'. +# +# true: indent_continue will be used only once +# false: indent_continue will be used every time (default) +# +# Requires indent_ignore_first_continue=false. +use_indent_continue_only_once = false # true/false + +# The indentation can be: +# - after the assignment, at the '[' character +# - at the beginning of the lambda body +# +# true: indentation will be at the beginning of the lambda body +# false: indentation will be after the assignment (default) +indent_cpp_lambda_only_once = false # true/false + +# Whether sp_after_angle takes precedence over sp_inside_fparen. This was the +# historic behavior, but is probably not the desired behavior, so this is off +# by default. +use_sp_after_angle_always = false # true/false + +# Whether to apply special formatting for Qt SIGNAL/SLOT macros. Essentially, +# this tries to format these so that they match Qt's normalized form (i.e. the +# result of QMetaObject::normalizedSignature), which can slightly improve the +# performance of the QObject::connect call, rather than how they would +# otherwise be formatted. +# +# See options_for_QT.cpp for details. +# +# Default: true +use_options_overriding_for_qt_macros = true # true/false + +# If true: the form feed character is removed from the list of whitespace +# characters. See https://en.cppreference.com/w/cpp/string/byte/isspace. +use_form_feed_no_more_as_whitespace_character = false # true/false + +# +# Warn levels - 1: error, 2: warning (default), 3: note +# + +# (C#) Warning is given if doing tab-to-\t replacement and we have found one +# in a C# verbatim string literal. +# +# Default: 2 +warn_level_tabs_found_in_verbatim_string_literals = 2 # unsigned number + +# Limit the number of loops. +# Used by uncrustify.cpp to exit from infinite loop. +# 0: no limit. +debug_max_number_of_loops = 0 # number + +# Set the number of the line to protocol; +# Used in the function prot_the_line if the 2. parameter is zero. +# 0: nothing protocol. +debug_line_number_to_protocol = 0 # number + +# Set the number of second(s) before terminating formatting the current file, +# 0: no timeout. +# only for linux +debug_timeout = 0 # number + +# Set the number of characters to be printed if the text is too long, +# 0: do not truncate. +debug_truncate = 0 # unsigned number + +# sort (or not) the tracking info. +# +# Default: true +debug_sort_the_tracks = true # true/false + +# decode (or not) the flags as a new line. +# only if the -p option is set. +debug_decode_the_flags = false # true/false + +# insert the number of the line at the beginning of each line +set_numbering_for_html_output = false # true/false + +# Meaning of the settings: +# Ignore - do not do any changes +# Add - makes sure there is 1 or more space/brace/newline/etc +# Force - makes sure there is exactly 1 space/brace/newline/etc, +# behaves like Add in some contexts +# Remove - removes space/brace/newline/etc +# +# +# - Token(s) can be treated as specific type(s) with the 'set' option: +# `set tokenType tokenString [tokenString...]` +# +# Example: +# `set BOOL __AND__ __OR__` +# +# tokenTypes are defined in src/token_enum.h, use them without the +# 'CT_' prefix: 'CT_BOOL' => 'BOOL' +# +# +# - Token(s) can be treated as type(s) with the 'type' option. +# `type tokenString [tokenString...]` +# +# Example: +# `type int c_uint_8 Rectangle` +# +# This can also be achieved with `set TYPE int c_uint_8 Rectangle` +# +# +# To embed whitespace in tokenStrings use the '\' escape character, or quote +# the tokenStrings. These quotes are supported: "'` +# +# +# - Support for the auto detection of languages through the file ending can be +# added using the 'file_ext' command. +# `file_ext langType langString [langString..]` +# +# Example: +# `file_ext CPP .ch .cxx .cpp.in` +# +# langTypes are defined in uncrusify_types.h in the lang_flag_e enum, use +# them without the 'LANG_' prefix: 'LANG_CPP' => 'CPP' +# +# +# - Custom macro-based indentation can be set up using 'macro-open', +# 'macro-else' and 'macro-close'. +# `(macro-open | macro-else | macro-close) tokenString` +# +# Example: +# `macro-open BEGIN_TEMPLATE_MESSAGE_MAP` +# `macro-open BEGIN_MESSAGE_MAP` +# `macro-close END_MESSAGE_MAP` +# +# +set CLASS_COLON FUNC_API_DEPRECATED_SINCE +set CLASS_COLON FUNC_API_FAST +set CLASS_COLON FUNC_API_LUA_ONLY +set CLASS_COLON FUNC_API_NOEXPORT +set CLASS_COLON FUNC_API_REMOTE_ONLY +set CLASS_COLON FUNC_API_SINCE +set CLASS_COLON FUNC_API_TEXTLOCK +set CLASS_COLON FUNC_API_TEXTLOCK_ALLOW_CMDWIN +set CLASS_COLON FUNC_ATTR_ALWAYS_INLINE +set CLASS_COLON FUNC_ATTR_CONST +set CLASS_COLON FUNC_ATTR_MALLOC +set CLASS_COLON FUNC_ATTR_NONNULL_ALL +set CLASS_COLON FUNC_ATTR_NONNULL_ARG +set CLASS_COLON FUNC_ATTR_NONNULL_RET +set CLASS_COLON FUNC_ATTR_NORETURN +set CLASS_COLON FUNC_ATTR_NO_SANITIZE_ADDRESS +set CLASS_COLON FUNC_ATTR_NO_SANITIZE_UNDEFINED +set CLASS_COLON FUNC_ATTR_PRINTF +set CLASS_COLON FUNC_ATTR_PURE +set CLASS_COLON FUNC_ATTR_WARN_UNUSED_RESULT +set PP_PRAGMA PRAGMA_DIAG_PUSH_IGNORE_IMPLICIT_FALLTHROUGH +set PP_PRAGMA PRAGMA_DIAG_PUSH_IGNORE_MISSING_PROTOTYPES +set CLASS_COLON REAL_FATTR_ALWAYS_INLINE +set CLASS_COLON REAL_FATTR_CONST +set CLASS_COLON REAL_FATTR_NONNULL_ALL +set CLASS_COLON REAL_FATTR_PURE +set CLASS_COLON REAL_FATTR_WARN_UNUSED_RESULT +# option(s) with 'not default' value: 131 +# diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_after.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_after.cfg new file mode 100644 index 00000000..b80dafa0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_after.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_class = true +nl_before_class = 2 +nl_after_class = 2 +nl_before_namespace = 2 +nl_after_namespace = 2 +nl_template_class = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_ignore_after_case.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_ignore_after_case.cfg new file mode 100644 index 00000000..6d1bbb7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/nl_before_ignore_after_case.cfg @@ -0,0 +1,11 @@ +# We need all these on, to check that nl_before_ignore_after_case +# overrides them after case CASE_LABEL: + +nl_before_if = force +nl_before_for = force +nl_before_switch = force +nl_before_do = force +nl_before_while = force +nl_before_synchronized = force + +nl_before_ignore_after_case = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-0.cfg new file mode 100644 index 00000000..a837d86f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-0.cfg @@ -0,0 +1,3 @@ +# default region indent +indent_columns = 4 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-1.cfg new file mode 100644 index 00000000..48ae77f3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-1.cfg @@ -0,0 +1,4 @@ +# indented region code +indent_columns = 4 +indent_class = true +pp_region_indent_code = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-2.cfg new file mode 100644 index 00000000..5beed445 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-2.cfg @@ -0,0 +1,4 @@ +# out-dented region preprocs +indent_columns = 4 +indent_class = true +pp_indent_region = -4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-3.cfg new file mode 100644 index 00000000..30a01c96 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/region-3.cfg @@ -0,0 +1,4 @@ +# Abs column region preproc +indent_columns = 4 +indent_class = true +pp_indent_region = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sort_imports.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sort_imports.cfg new file mode 100644 index 00000000..655a684f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sort_imports.cfg @@ -0,0 +1,3 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_cast.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_cast.cfg new file mode 100644 index 00000000..c16cc978 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_cast.cfg @@ -0,0 +1,11 @@ +sp_arith = force +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_after_comma = force +sp_after_cast = force +sp_inside_paren_cast = remove +sp_inside_fparen = remove +indent_columns = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-f.cfg new file mode 100644 index 00000000..b7fa74f4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-f.cfg @@ -0,0 +1,2 @@ +sp_after_type = force +sp_after_decltype = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-r.cfg new file mode 100644 index 00000000..78a64119 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_after_type-r.cfg @@ -0,0 +1,2 @@ +sp_after_type = remove +sp_after_decltype = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_arith-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_arith-f.cfg new file mode 100644 index 00000000..6cd2b6b0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_arith-f.cfg @@ -0,0 +1,4 @@ +sp_arith = force + +# c/09605 don't add space before the minus sign in: frames = ((frames + 15) & -16); +# oc/50609 don't add space before the minus sign in: NSNumber *foo1 = @-1;
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_before_byref-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_before_byref-r.cfg new file mode 100644 index 00000000..2f5d1eff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_before_byref-r.cfg @@ -0,0 +1,2 @@ +sp_before_byref = remove +sp_before_byref_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start-a.cfg new file mode 100644 index 00000000..d7e6adf1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start-a.cfg @@ -0,0 +1 @@ +sp_cmt_cpp_start = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start_force.cfg new file mode 100644 index 00000000..e87c9b0d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cmt_cpp_start_force.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = force +cmt_width = 40
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cparen_oparen-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cparen_oparen-f.cfg new file mode 100644 index 00000000..c2af4d15 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_cparen_oparen-f.cfg @@ -0,0 +1,3 @@ +sp_cparen_oparen = force +indent_with_tabs = 0 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_inside_fparen-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_inside_fparen-f.cfg new file mode 100644 index 00000000..ef2f86d6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/sp_inside_fparen-f.cfg @@ -0,0 +1,2 @@ +sp_inside_fparen = force +sp_inside_rparen = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/space_indent_columns-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/space_indent_columns-4.cfg new file mode 100644 index 00000000..f05c685f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/space_indent_columns-4.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/star_pos-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/star_pos-0.cfg new file mode 100644 index 00000000..3648d94a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/star_pos-0.cfg @@ -0,0 +1,12 @@ +# Places the byref as follows: "int &foo" +sp_before_ptr_star = remove +sp_after_ptr_star = force +sp_ptr_star_func_type = force +sp_before_byref = remove +indent_columns = 3 +align_var_def_span = 2 +align_var_struct_span = 2 +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_func = 1 +align_func_proto_span = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/tde.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/tde.cfg new file mode 100644 index 00000000..c7626042 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/tde.cfg @@ -0,0 +1,849 @@ +newlines = lf # lf/crlf/cr/auto +input_tab_size = 2 # unsigned number +output_tab_size = 2 # unsigned number +string_escape_char = 92 # unsigned number +string_escape_char2 = 0 # unsigned number +string_replace_tab_chars = false # true/false +tok_split_gte = false # true/false +disable_processing_nl_cont = false # true/false +disable_processing_cmt = " *INDENT-OFF*" # string +enable_processing_cmt = " *INDENT-ON*" # string +enable_digraphs = true # true/false +processing_cmt_as_regex = false # true/false +utf8_bom = ignore # ignore/add/remove/force/not_defined +utf8_byte = false # true/false +utf8_force = false # true/false +sp_arith = force # ignore/add/remove/force/not_defined +sp_arith_additive = force # ignore/add/remove/force/not_defined +sp_assign = force # ignore/add/remove/force/not_defined +sp_cpp_lambda_assign = force # ignore/add/remove/force/not_defined +sp_cpp_lambda_square_paren = remove # ignore/add/remove/force/not_defined +sp_cpp_lambda_square_brace = remove # ignore/add/remove/force/not_defined +sp_cpp_lambda_argument_list = ignore # ignore/add/remove/force/not_defined +sp_cpp_lambda_paren_brace = force # ignore/add/remove/force/not_defined +sp_cpp_lambda_fparen = force # ignore/add/remove/force/not_defined +sp_assign_default = force # ignore/add/remove/force/not_defined +sp_before_assign = force # ignore/add/remove/force/not_defined +sp_after_assign = force # ignore/add/remove/force/not_defined +sp_enum_brace = force # ignore/add/remove/force/not_defined +sp_enum_paren = force # ignore/add/remove/force/not_defined +sp_enum_assign = force # ignore/add/remove/force/not_defined +sp_enum_before_assign = force # ignore/add/remove/force/not_defined +sp_enum_after_assign = force # ignore/add/remove/force/not_defined +sp_enum_colon = force # ignore/add/remove/force/not_defined +sp_pp_concat = remove # ignore/add/remove/force/not_defined +sp_pp_stringify = remove # ignore/add/remove/force/not_defined +sp_before_pp_stringify = remove # ignore/add/remove/force/not_defined +sp_bool = force # ignore/add/remove/force/not_defined +sp_compare = force # ignore/add/remove/force/not_defined +sp_inside_paren = remove # ignore/add/remove/force/not_defined +sp_paren_paren = remove # ignore/add/remove/force/not_defined +sp_cparen_oparen = remove # ignore/add/remove/force/not_defined +sp_balance_nested_parens = false # true/false +sp_paren_brace = force # ignore/add/remove/force/not_defined +sp_brace_brace = remove # ignore/add/remove/force/not_defined +sp_before_ptr_star = force # ignore/add/remove/force/not_defined +sp_before_unnamed_ptr_star = remove # ignore/add/remove/force/not_defined +sp_before_qualifier_ptr_star = ignore # ignore/add/remove/force/not_defined +sp_before_operator_ptr_star = ignore # ignore/add/remove/force/not_defined +sp_before_scope_ptr_star = ignore # ignore/add/remove/force/not_defined +sp_before_global_scope_ptr_star = ignore # ignore/add/remove/force/not_defined +sp_qualifier_unnamed_ptr_star = ignore # ignore/add/remove/force/not_defined +sp_between_ptr_star = remove # ignore/add/remove/force/not_defined +sp_between_ptr_ref = remove # ignore/add/remove/force/not_defined +sp_after_ptr_star = remove # ignore/add/remove/force/not_defined +sp_after_ptr_block_caret = remove # ignore/add/remove/force/not_defined +sp_after_ptr_star_qualifier = remove # ignore/add/remove/force/not_defined +sp_after_ptr_star_func = force # ignore/add/remove/force/not_defined +sp_after_ptr_star_trailing = force # ignore/add/remove/force/not_defined +sp_ptr_star_func_var = remove # ignore/add/remove/force/not_defined +sp_ptr_star_func_type = remove # ignore/add/remove/force/not_defined +sp_ptr_star_paren = force # ignore/add/remove/force/not_defined +sp_before_ptr_star_func = remove # ignore/add/remove/force/not_defined +sp_qualifier_ptr_star_func = remove # ignore/add/remove/force/not_defined +sp_before_ptr_star_trailing = remove # ignore/add/remove/force/not_defined +sp_qualifier_ptr_star_trailing = remove # ignore/add/remove/force/not_defined +sp_before_byref = force # ignore/add/remove/force/not_defined +sp_before_unnamed_byref = force # ignore/add/remove/force/not_defined +sp_after_byref = remove # ignore/add/remove/force/not_defined +sp_after_byref_func = force # ignore/add/remove/force/not_defined +sp_before_byref_func = remove # ignore/add/remove/force/not_defined +sp_byref_paren = ignore # ignore/add/remove/force/not_defined +sp_after_type = force # ignore/add/remove/force/not_defined +sp_after_decltype = remove # ignore/add/remove/force/not_defined +sp_before_template_paren = remove # ignore/add/remove/force/not_defined +sp_template_angle = remove # ignore/add/remove/force/not_defined +sp_before_angle = remove # ignore/add/remove/force/not_defined +sp_inside_angle = remove # ignore/add/remove/force/not_defined +sp_inside_angle_empty = remove # ignore/add/remove/force/not_defined +sp_angle_colon = force # ignore/add/remove/force/not_defined +sp_after_angle = force # ignore/add/remove/force/not_defined +sp_angle_paren = remove # ignore/add/remove/force/not_defined +sp_angle_paren_empty = remove # ignore/add/remove/force/not_defined +sp_angle_word = force # ignore/add/remove/force/not_defined +sp_angle_shift = remove # ignore/add/remove/force/not_defined +sp_permit_cpp11_shift = true # true/false +sp_before_sparen = force # ignore/add/remove/force/not_defined +sp_inside_sparen = remove # ignore/add/remove/force/not_defined +sp_inside_sparen_open = remove # ignore/add/remove/force/not_defined +sp_inside_sparen_close = remove # ignore/add/remove/force/not_defined +sp_inside_for = remove # ignore/add/remove/force/not_defined +sp_inside_for_open = remove # ignore/add/remove/force/not_defined +sp_inside_for_close = remove # ignore/add/remove/force/not_defined +sp_sparen_paren = remove # ignore/add/remove/force/not_defined +sp_after_sparen = force # ignore/add/remove/force/not_defined +sp_sparen_brace = force # ignore/add/remove/force/not_defined +sp_do_brace_open = force # ignore/add/remove/force/not_defined +sp_brace_close_while = force # ignore/add/remove/force/not_defined +sp_while_paren_open = force # ignore/add/remove/force/not_defined +sp_invariant_paren = force # ignore/add/remove/force/not_defined +sp_after_invariant_paren = remove # ignore/add/remove/force/not_defined +sp_special_semi = remove # ignore/add/remove/force/not_defined +sp_before_semi = remove # ignore/add/remove/force/not_defined +sp_before_semi_for = remove # ignore/add/remove/force/not_defined +sp_before_semi_for_empty = remove # ignore/add/remove/force/not_defined +sp_between_semi_for_empty = remove # ignore/add/remove/force/not_defined +sp_after_semi = force # ignore/add/remove/force/not_defined +sp_after_semi_for = force # ignore/add/remove/force/not_defined +sp_after_semi_for_empty = force # ignore/add/remove/force/not_defined +sp_before_square = remove # ignore/add/remove/force/not_defined +sp_before_vardef_square = remove # ignore/add/remove/force/not_defined +sp_before_square_asm_block = remove # ignore/add/remove/force/not_defined +sp_before_squares = remove # ignore/add/remove/force/not_defined +sp_cpp_before_struct_binding = remove # ignore/add/remove/force/not_defined +sp_inside_square = remove # ignore/add/remove/force/not_defined +sp_inside_square_empty = remove # ignore/add/remove/force/not_defined +sp_inside_square_oc_array = remove # ignore/add/remove/force/not_defined +sp_after_comma = force # ignore/add/remove/force/not_defined +sp_before_comma = remove # ignore/add/remove/force/not_defined +sp_after_mdatype_commas = force # ignore/add/remove/force/not_defined +sp_before_mdatype_commas = force # ignore/add/remove/force/not_defined +sp_between_mdatype_commas = force # ignore/add/remove/force/not_defined +sp_paren_comma = force # ignore/add/remove/force/not_defined +sp_type_colon = force # ignore/add/remove/force/not_defined +sp_after_ellipsis = remove # ignore/add/remove/force/not_defined +sp_before_ellipsis = force # ignore/add/remove/force/not_defined +sp_type_ellipsis = force # ignore/add/remove/force/not_defined +sp_ptr_type_ellipsis = remove # ignore/add/remove/force/not_defined +sp_paren_ellipsis = remove # ignore/add/remove/force/not_defined +sp_byref_ellipsis = remove # ignore/add/remove/force/not_defined +sp_paren_qualifier = force # ignore/add/remove/force/not_defined +sp_paren_noexcept = force # ignore/add/remove/force/not_defined +sp_after_class_colon = force # ignore/add/remove/force/not_defined +sp_before_class_colon = force # ignore/add/remove/force/not_defined +sp_after_constr_colon = force # ignore/add/remove/force/not_defined +sp_before_constr_colon = force # ignore/add/remove/force/not_defined +sp_before_case_colon = remove # ignore/add/remove/force/not_defined +sp_after_operator = remove # ignore/add/remove/force/not_defined +sp_after_operator_sym = remove # ignore/add/remove/force/not_defined +sp_after_operator_sym_empty = remove # ignore/add/remove/force/not_defined +sp_after_cast = remove # ignore/add/remove/force/not_defined +sp_inside_paren_cast = remove # ignore/add/remove/force/not_defined +sp_cpp_cast_paren = remove # ignore/add/remove/force/not_defined +sp_sizeof_paren = remove # ignore/add/remove/force/not_defined +sp_sizeof_ellipsis = remove # ignore/add/remove/force/not_defined +sp_sizeof_ellipsis_paren = remove # ignore/add/remove/force/not_defined +sp_ellipsis_parameter_pack = remove # ignore/add/remove/force/not_defined +sp_parameter_pack_ellipsis = remove # ignore/add/remove/force/not_defined +sp_decltype_paren = remove # ignore/add/remove/force/not_defined +sp_after_tag = remove # ignore/add/remove/force/not_defined +sp_inside_braces_enum = force # ignore/add/remove/force/not_defined +sp_inside_braces_struct = remove # ignore/add/remove/force/not_defined +sp_inside_braces_oc_dict = remove # ignore/add/remove/force/not_defined +sp_after_type_brace_init_lst_open = force # ignore/add/remove/force/not_defined +sp_before_type_brace_init_lst_close = force # ignore/add/remove/force/not_defined +sp_inside_type_brace_init_lst = remove # ignore/add/remove/force/not_defined +sp_inside_braces = add # ignore/add/remove/force/not_defined +sp_inside_braces_empty = remove # ignore/add/remove/force/not_defined +sp_trailing_return = remove # ignore/add/remove/force/not_defined +sp_type_func = force # ignore/add/remove/force/not_defined +sp_type_brace_init_lst = force # ignore/add/remove/force/not_defined +sp_func_proto_paren = remove # ignore/add/remove/force/not_defined +sp_func_proto_paren_empty = remove # ignore/add/remove/force/not_defined +sp_func_type_paren = remove # ignore/add/remove/force/not_defined +sp_func_def_paren = remove # ignore/add/remove/force/not_defined +sp_func_def_paren_empty = remove # ignore/add/remove/force/not_defined +sp_inside_fparens = remove # ignore/add/remove/force/not_defined +sp_inside_fparen = remove # ignore/add/remove/force/not_defined +sp_func_call_user_inside_rparen = remove # ignore/add/remove/force/not_defined +sp_inside_rparens = remove # ignore/add/remove/force/not_defined +sp_inside_rparen = remove # ignore/add/remove/force/not_defined +sp_inside_tparen = remove # ignore/add/remove/force/not_defined +sp_after_tparen_close = remove # ignore/add/remove/force/not_defined +sp_square_fparen = remove # ignore/add/remove/force/not_defined +sp_fparen_brace = force # ignore/add/remove/force/not_defined +sp_fparen_brace_initializer = force # ignore/add/remove/force/not_defined +sp_fparen_dbrace = force # ignore/add/remove/force/not_defined +sp_func_call_paren = remove # ignore/add/remove/force/not_defined +sp_func_call_paren_empty = remove # ignore/add/remove/force/not_defined +sp_func_call_user_paren = remove # ignore/add/remove/force/not_defined +sp_func_call_user_inside_fparen = remove # ignore/add/remove/force/not_defined +sp_func_call_user_paren_paren = remove # ignore/add/remove/force/not_defined +sp_func_class_paren = remove # ignore/add/remove/force/not_defined +sp_func_class_paren_empty = remove # ignore/add/remove/force/not_defined +sp_return = force # ignore/add/remove/force/not_defined +sp_return_paren = force # ignore/add/remove/force/not_defined +sp_return_brace = force # ignore/add/remove/force/not_defined +sp_attribute_paren = remove # ignore/add/remove/force/not_defined +sp_defined_paren = force # ignore/add/remove/force/not_defined +sp_throw_paren = force # ignore/add/remove/force/not_defined +sp_after_throw = force # ignore/add/remove/force/not_defined +sp_catch_paren = force # ignore/add/remove/force/not_defined +sp_oc_catch_paren = force # ignore/add/remove/force/not_defined +sp_before_oc_proto_list = force # ignore/add/remove/force/not_defined +sp_oc_classname_paren = remove # ignore/add/remove/force/not_defined +sp_version_paren = ignore # ignore/add/remove/force/not_defined +sp_scope_paren = ignore # ignore/add/remove/force/not_defined +sp_super_paren = remove # ignore/add/remove/force/not_defined +sp_this_paren = remove # ignore/add/remove/force/not_defined +sp_macro = force # ignore/add/remove/force/not_defined +sp_macro_func = force # ignore/add/remove/force/not_defined +sp_else_brace = force # ignore/add/remove/force/not_defined +sp_brace_else = force # ignore/add/remove/force/not_defined +sp_brace_typedef = force # ignore/add/remove/force/not_defined +sp_catch_brace = force # ignore/add/remove/force/not_defined +sp_oc_catch_brace = force # ignore/add/remove/force/not_defined +sp_brace_catch = force # ignore/add/remove/force/not_defined +sp_oc_brace_catch = force # ignore/add/remove/force/not_defined +sp_finally_brace = force # ignore/add/remove/force/not_defined +sp_brace_finally = force # ignore/add/remove/force/not_defined +sp_try_brace = force # ignore/add/remove/force/not_defined +sp_getset_brace = force # ignore/add/remove/force/not_defined +sp_word_brace_init_lst = remove # ignore/add/remove/force/not_defined +sp_word_brace_ns = force # ignore/add/remove/force/not_defined +sp_before_dc = remove # ignore/add/remove/force/not_defined +sp_after_dc = remove # ignore/add/remove/force/not_defined +sp_d_array_colon = force # ignore/add/remove/force/not_defined +sp_not = remove # ignore/add/remove/force/not_defined +sp_not_not = remove # ignore/add/remove/force/not_defined +sp_inv = remove # ignore/add/remove/force/not_defined +sp_addr = remove # ignore/add/remove/force/not_defined +sp_member = remove # ignore/add/remove/force/not_defined +sp_deref = remove # ignore/add/remove/force/not_defined +sp_sign = remove # ignore/add/remove/force/not_defined +sp_incdec = remove # ignore/add/remove/force/not_defined +sp_before_nl_cont = force # ignore/add/remove/force/not_defined +sp_after_oc_scope = ignore # ignore/add/remove/force/not_defined +sp_after_oc_colon = ignore # ignore/add/remove/force/not_defined +sp_before_oc_colon = ignore # ignore/add/remove/force/not_defined +sp_after_oc_dict_colon = ignore # ignore/add/remove/force/not_defined +sp_before_oc_dict_colon = ignore # ignore/add/remove/force/not_defined +sp_after_send_oc_colon = ignore # ignore/add/remove/force/not_defined +sp_before_send_oc_colon = ignore # ignore/add/remove/force/not_defined +sp_after_oc_type = ignore # ignore/add/remove/force/not_defined +sp_after_oc_return_type = ignore # ignore/add/remove/force/not_defined +sp_after_oc_at_sel = ignore # ignore/add/remove/force/not_defined +sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force/not_defined +sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force/not_defined +sp_before_oc_block_caret = ignore # ignore/add/remove/force/not_defined +sp_after_oc_block_caret = ignore # ignore/add/remove/force/not_defined +sp_after_oc_msg_receiver = ignore # ignore/add/remove/force/not_defined +sp_after_oc_property = ignore # ignore/add/remove/force/not_defined +sp_after_oc_synchronized = ignore # ignore/add/remove/force/not_defined +sp_cond_colon = force # ignore/add/remove/force/not_defined +sp_cond_colon_before = force # ignore/add/remove/force/not_defined +sp_cond_colon_after = force # ignore/add/remove/force/not_defined +sp_cond_question = force # ignore/add/remove/force/not_defined +sp_cond_question_before = force # ignore/add/remove/force/not_defined +sp_cond_question_after = force # ignore/add/remove/force/not_defined +sp_cond_ternary_short = force # ignore/add/remove/force/not_defined +sp_case_label = force # ignore/add/remove/force/not_defined +sp_range = ignore # ignore/add/remove/force/not_defined +sp_after_for_colon = force # ignore/add/remove/force/not_defined +sp_before_for_colon = force # ignore/add/remove/force/not_defined +sp_extern_paren = ignore # ignore/add/remove/force/not_defined +sp_cmt_cpp_start = ignore # ignore/add/remove/force/not_defined +sp_cmt_cpp_pvs = false # true/false +sp_cmt_cpp_lint = false # true/false +sp_cmt_cpp_region = ignore # ignore/add/remove/force/not_defined +sp_cmt_cpp_doxygen = false # true/false +sp_cmt_cpp_qttr = false # true/false +sp_endif_cmt = force # ignore/add/remove/force/not_defined +sp_after_new = force # ignore/add/remove/force/not_defined +sp_between_new_paren = remove # ignore/add/remove/force/not_defined +sp_after_newop_paren = force # ignore/add/remove/force/not_defined +sp_inside_newop_paren = remove # ignore/add/remove/force/not_defined +sp_inside_newop_paren_open = remove # ignore/add/remove/force/not_defined +sp_inside_newop_paren_close = remove # ignore/add/remove/force/not_defined +sp_before_tr_cmt = force # ignore/add/remove/force/not_defined +sp_num_before_tr_cmt = 0 # unsigned number +sp_before_emb_cmt = force # ignore/add/remove/force/not_defined +sp_num_before_emb_cmt = 0 # unsigned number +sp_after_emb_cmt = ignore # ignore/add/remove/force/not_defined +sp_num_after_emb_cmt = 0 # unsigned number +sp_annotation_paren = force # ignore/add/remove/force/not_defined +sp_skip_vbrace_tokens = false # true/false +sp_after_noexcept = remove # ignore/add/remove/force/not_defined +sp_vala_after_translation = remove # ignore/add/remove/force/not_defined +sp_before_bit_colon = force # ignore/add/remove/force/not_defined +sp_after_bit_colon = force # ignore/add/remove/force/not_defined +force_tab_after_define = false # true/false +indent_columns = 2 # unsigned number +indent_ignore_first_continue = false # true/false +indent_continue = -8 # number +indent_continue_class_head = 0 # unsigned number +indent_single_newlines = false # true/false +indent_param = 0 # unsigned number +indent_with_tabs = 1 # unsigned number +indent_cmt_with_tabs = false # true/false +indent_align_string = true # true/false +indent_xml_string = 0 # unsigned number +indent_brace = 0 # unsigned number +indent_braces = false # true/false +indent_braces_no_func = false # true/false +indent_braces_no_class = false # true/false +indent_braces_no_struct = false # true/false +indent_brace_parent = false # true/false +indent_paren_open_brace = false # true/false +indent_cs_delegate_brace = false # true/false +indent_cs_delegate_body = false # true/false +indent_namespace = true # true/false +indent_namespace_single_indent = false # true/false +indent_namespace_level = 0 # unsigned number +indent_namespace_limit = 0 # unsigned number +indent_namespace_inner_only = false # true/false +indent_extern = true # true/false +indent_class = true # true/false +indent_ignore_before_class_colon = false # true/false +indent_before_class_colon = 0 # number +indent_class_colon = true # true/false +indent_class_on_colon = false # true/false +indent_ignore_before_constr_colon = false # true/false +indent_constr_colon = true # true/false +indent_ctor_init_leading = 2 # unsigned number +indent_ctor_init_following = 2 # unsigned number +indent_ctor_init = 2 # number +indent_else_if = false # true/false +indent_var_def_blk = 0 # number +indent_var_def_cont = false # true/false +indent_shift = 0 # number +indent_func_def_force_col1 = false # true/false +indent_func_call_param = false # true/false +indent_func_def_param = false # true/false +indent_func_def_param_paren_pos_threshold = 0 # unsigned number +indent_func_proto_param = false # true/false +indent_func_class_param = false # true/false +indent_func_ctor_var_param = false # true/false +indent_template_param = false # true/false +indent_func_param_double = false # true/false +indent_func_const = 0 # unsigned number +indent_func_throw = 0 # unsigned number +indent_macro_brace = true # true/false +indent_member = 0 # unsigned number +indent_member_single = false # true/false +indent_single_line_comments_before = 0 # unsigned number +indent_single_line_comments_after = 0 # unsigned number +indent_sparen_extra = 0 # number +indent_relative_single_line_comments = false # true/false +indent_switch_case = 2 # unsigned number +indent_switch_body = 0 # unsigned number +indent_ignore_case_brace = false # true/false +indent_case_brace = 0 # number +indent_switch_break_with_case = false # true/false +indent_switch_pp = true # true/false +indent_case_shift = 0 # unsigned number +indent_case_comment = true # true/false +indent_comment = true # true/false +indent_col1_comment = true # true/false +indent_col1_multi_string_literal = true # true/false +indent_comment_align_thresh = 3 # unsigned number +indent_ignore_label = false # true/false +indent_label = 1 # number +indent_access_spec = 0 # number +indent_access_spec_body = true # true/false +indent_paren_nl = false # true/false +indent_paren_close = 0 # number +indent_paren_after_func_def = false # true/false +indent_paren_after_func_decl = false # true/false +indent_paren_after_func_call = false # true/false +indent_comma_brace = 0 # number +indent_comma_paren = 0 # number +indent_bool_paren = 0 # number +indent_ignore_bool = false # true/false +indent_ignore_arith = false # true/false +indent_semicolon_for_paren = false # true/false +indent_ignore_semicolon = false # true/false +indent_first_bool_expr = false # true/false +indent_first_for_expr = false # true/false +indent_square_nl = false # true/false +indent_preserve_sql = false # true/false +indent_ignore_assign = false # true/false +indent_align_assign = true # true/false +indent_off_after_assign = false # true/false +indent_align_paren = true # true/false +indent_oc_inside_msg_sel = false # true/false +indent_oc_block = false # true/false +indent_oc_block_msg = 0 # unsigned number +indent_oc_msg_colon = 0 # unsigned number +indent_oc_msg_prioritize_first_colon = true # true/false +indent_oc_block_msg_xcode_style = false # true/false +indent_oc_block_msg_from_keyword = false # true/false +indent_oc_block_msg_from_colon = false # true/false +indent_oc_block_msg_from_caret = false # true/false +indent_oc_block_msg_from_brace = false # true/false +indent_min_vbrace_open = 0 # unsigned number +indent_vbrace_open_on_tabstop = false # true/false +indent_token_after_brace = true # true/false +indent_cpp_lambda_body = true # true/false +indent_compound_literal_return = false # true/false +indent_using_block = true # true/false +indent_ternary_operator = 2 # unsigned number +indent_inside_ternary_operator = false # true/false +indent_off_after_return = false # true/false +indent_off_after_return_new = false # true/false +indent_single_after_return = false # true/false +indent_ignore_asm_block = false # true/false +donot_indent_func_def_close_paren = true # true/false +nl_collapse_empty_body = false # true/false +nl_assign_leave_one_liners = true # true/false +nl_class_leave_one_liners = false # true/false +nl_enum_leave_one_liners = false # true/false +nl_getset_leave_one_liners = false # true/false +nl_cs_property_leave_one_liners = false # true/false +nl_func_leave_one_liners = false # true/false +nl_cpp_lambda_leave_one_liners = false # true/false +nl_if_leave_one_liners = false # true/false +nl_while_leave_one_liners = false # true/false +nl_do_leave_one_liners = false # true/false +nl_for_leave_one_liners = false # true/false +nl_oc_msg_leave_one_liner = false # true/false +nl_oc_mdef_brace = ignore # ignore/add/remove/force/not_defined +nl_oc_block_brace = ignore # ignore/add/remove/force/not_defined +nl_oc_before_interface = ignore # ignore/add/remove/force/not_defined +nl_oc_before_implementation = ignore # ignore/add/remove/force/not_defined +nl_oc_before_end = ignore # ignore/add/remove/force/not_defined +nl_oc_interface_brace = ignore # ignore/add/remove/force/not_defined +nl_oc_implementation_brace = ignore # ignore/add/remove/force/not_defined +nl_start_of_file = remove # ignore/add/remove/force/not_defined +nl_start_of_file_min = 0 # unsigned number +nl_end_of_file = force # ignore/add/remove/force/not_defined +nl_end_of_file_min = 1 # unsigned number +nl_assign_brace = ignore # ignore/add/remove/force/not_defined +nl_assign_square = ignore # ignore/add/remove/force/not_defined +nl_tsquare_brace = remove # ignore/add/remove/force/not_defined +nl_after_square_assign = ignore # ignore/add/remove/force/not_defined +nl_fcall_brace = force # ignore/add/remove/force/not_defined +nl_enum_brace = force # ignore/add/remove/force/not_defined +nl_enum_class = force # ignore/add/remove/force/not_defined +nl_enum_class_identifier = force # ignore/add/remove/force/not_defined +nl_enum_identifier_colon = force # ignore/add/remove/force/not_defined +nl_enum_colon_type = force # ignore/add/remove/force/not_defined +nl_struct_brace = force # ignore/add/remove/force/not_defined +nl_union_brace = force # ignore/add/remove/force/not_defined +nl_if_brace = force # ignore/add/remove/force/not_defined +nl_brace_else = force # ignore/add/remove/force/not_defined +nl_elseif_brace = force # ignore/add/remove/force/not_defined +nl_else_brace = force # ignore/add/remove/force/not_defined +nl_else_if = remove # ignore/add/remove/force/not_defined +nl_before_opening_brace_func_class_def = force # ignore/add/remove/force/not_defined +nl_before_if_closing_paren = remove # ignore/add/remove/force/not_defined +nl_brace_finally = force # ignore/add/remove/force/not_defined +nl_finally_brace = force # ignore/add/remove/force/not_defined +nl_try_brace = force # ignore/add/remove/force/not_defined +nl_getset_brace = force # ignore/add/remove/force/not_defined +nl_for_brace = force # ignore/add/remove/force/not_defined +nl_catch_brace = force # ignore/add/remove/force/not_defined +nl_oc_catch_brace = force # ignore/add/remove/force/not_defined +nl_brace_catch = force # ignore/add/remove/force/not_defined +nl_oc_brace_catch = force # ignore/add/remove/force/not_defined +nl_brace_square = remove # ignore/add/remove/force/not_defined +nl_brace_fparen = remove # ignore/add/remove/force/not_defined +nl_while_brace = force # ignore/add/remove/force/not_defined +nl_scope_brace = ignore # ignore/add/remove/force/not_defined +nl_unittest_brace = ignore # ignore/add/remove/force/not_defined +nl_version_brace = ignore # ignore/add/remove/force/not_defined +nl_using_brace = force # ignore/add/remove/force/not_defined +nl_brace_brace = ignore # ignore/add/remove/force/not_defined +nl_do_brace = force # ignore/add/remove/force/not_defined +nl_brace_while = force # ignore/add/remove/force/not_defined +nl_switch_brace = force # ignore/add/remove/force/not_defined +nl_synchronized_brace = force # ignore/add/remove/force/not_defined +nl_multi_line_cond = true # true/false +nl_multi_line_sparen_open = remove # ignore/add/remove/force/not_defined +nl_multi_line_sparen_close = remove # ignore/add/remove/force/not_defined +nl_multi_line_define = true # true/false +nl_before_case = true # true/false +nl_after_case = true # true/false +nl_case_colon_brace = force # ignore/add/remove/force/not_defined +nl_before_throw = remove # ignore/add/remove/force/not_defined +nl_namespace_brace = force # ignore/add/remove/force/not_defined +nl_template_class = force # ignore/add/remove/force/not_defined +nl_template_class_decl = force # ignore/add/remove/force/not_defined +nl_template_class_decl_special = force # ignore/add/remove/force/not_defined +nl_template_class_def = force # ignore/add/remove/force/not_defined +nl_template_class_def_special = force # ignore/add/remove/force/not_defined +nl_template_func = force # ignore/add/remove/force/not_defined +nl_template_func_decl = force # ignore/add/remove/force/not_defined +nl_template_func_decl_special = force # ignore/add/remove/force/not_defined +nl_template_func_def = force # ignore/add/remove/force/not_defined +nl_template_func_def_special = remove # ignore/add/remove/force/not_defined +nl_template_var = remove # ignore/add/remove/force/not_defined +nl_template_using = remove # ignore/add/remove/force/not_defined +nl_class_brace = force # ignore/add/remove/force/not_defined +nl_class_init_args = remove # ignore/add/remove/force/not_defined +nl_constr_init_args = remove # ignore/add/remove/force/not_defined +nl_enum_own_lines = force # ignore/add/remove/force/not_defined +nl_func_type_name = remove # ignore/add/remove/force/not_defined +nl_func_type_name_class = remove # ignore/add/remove/force/not_defined +nl_func_class_scope = remove # ignore/add/remove/force/not_defined +nl_func_scope_name = remove # ignore/add/remove/force/not_defined +nl_func_proto_type_name = remove # ignore/add/remove/force/not_defined +nl_func_paren = remove # ignore/add/remove/force/not_defined +nl_func_paren_empty = remove # ignore/add/remove/force/not_defined +nl_func_def_paren = remove # ignore/add/remove/force/not_defined +nl_func_def_paren_empty = remove # ignore/add/remove/force/not_defined +nl_func_call_paren = remove # ignore/add/remove/force/not_defined +nl_func_call_paren_empty = remove # ignore/add/remove/force/not_defined +nl_func_decl_start = remove # ignore/add/remove/force/not_defined +nl_func_def_start = remove # ignore/add/remove/force/not_defined +nl_func_decl_start_single = remove # ignore/add/remove/force/not_defined +nl_func_def_start_single = remove # ignore/add/remove/force/not_defined +nl_func_decl_start_multi_line = false # true/false +nl_func_def_start_multi_line = false # true/false +nl_func_decl_args = remove # ignore/add/remove/force/not_defined +nl_func_def_args = remove # ignore/add/remove/force/not_defined +nl_func_call_args = remove # ignore/add/remove/force/not_defined +nl_func_decl_args_multi_line = false # true/false +nl_func_def_args_multi_line = false # true/false +nl_func_decl_end = remove # ignore/add/remove/force/not_defined +nl_func_def_end = remove # ignore/add/remove/force/not_defined +nl_func_decl_end_single = remove # ignore/add/remove/force/not_defined +nl_func_def_end_single = remove # ignore/add/remove/force/not_defined +nl_func_decl_end_multi_line = false # true/false +nl_func_def_end_multi_line = false # true/false +nl_func_decl_empty = remove # ignore/add/remove/force/not_defined +nl_func_def_empty = remove # ignore/add/remove/force/not_defined +nl_func_call_empty = remove # ignore/add/remove/force/not_defined +nl_func_call_start = remove # ignore/add/remove/force/not_defined +nl_func_call_end = remove # ignore/add/remove/force/not_defined +nl_func_call_start_multi_line = false # true/false +nl_func_call_args_multi_line = false # true/false +nl_func_call_end_multi_line = false # true/false +nl_func_call_args_multi_line_ignore_closures = true # true/false +nl_template_start = false # true/false +nl_template_args = false # true/false +nl_template_end = false # true/false +nl_oc_msg_args = false # true/false +nl_oc_msg_args_min_params = 0 # unsigned number +nl_oc_msg_args_max_code_width = 0 # unsigned number +nl_fdef_brace = force # ignore/add/remove/force/not_defined +nl_fdef_brace_cond = force # ignore/add/remove/force/not_defined +nl_cpp_ldef_brace = remove # ignore/add/remove/force/not_defined +nl_return_expr = remove # ignore/add/remove/force/not_defined +nl_throw_expr = remove # ignore/add/remove/force/not_defined +nl_after_semicolon = true # true/false +nl_paren_dbrace_open = remove # ignore/add/remove/force/not_defined +nl_type_brace_init_lst = force # ignore/add/remove/force/not_defined +nl_type_brace_init_lst_open = force # ignore/add/remove/force/not_defined +nl_type_brace_init_lst_close = force # ignore/add/remove/force/not_defined +nl_before_brace_open = true # true/false +nl_after_brace_open = true # true/false +nl_after_brace_open_cmt = true # true/false +nl_after_vbrace_open = true # true/false +nl_after_vbrace_open_empty = true # true/false +nl_after_brace_close = true # true/false +nl_after_vbrace_close = true # true/false +nl_brace_struct_var = remove # ignore/add/remove/force/not_defined +nl_define_macro = false # true/false +nl_squeeze_paren_close = false # true/false +nl_squeeze_ifdef = false # true/false +nl_squeeze_ifdef_top_level = false # true/false +nl_before_if = ignore # ignore/add/remove/force/not_defined +nl_after_if = ignore # ignore/add/remove/force/not_defined +nl_before_for = ignore # ignore/add/remove/force/not_defined +nl_after_for = ignore # ignore/add/remove/force/not_defined +nl_before_while = ignore # ignore/add/remove/force/not_defined +nl_after_while = ignore # ignore/add/remove/force/not_defined +nl_before_switch = ignore # ignore/add/remove/force/not_defined +nl_after_switch = ignore # ignore/add/remove/force/not_defined +nl_before_synchronized = ignore # ignore/add/remove/force/not_defined +nl_after_synchronized = ignore # ignore/add/remove/force/not_defined +nl_before_do = ignore # ignore/add/remove/force/not_defined +nl_after_do = ignore # ignore/add/remove/force/not_defined +nl_before_ignore_after_case = false # true/false +nl_before_return = false # true/false +nl_after_return = false # true/false +nl_before_member = remove # ignore/add/remove/force/not_defined +nl_after_member = remove # ignore/add/remove/force/not_defined +nl_ds_struct_enum_cmt = false # true/false +nl_ds_struct_enum_close_brace = true # true/false +nl_class_colon = remove # ignore/add/remove/force/not_defined +nl_constr_colon = force # ignore/add/remove/force/not_defined +nl_namespace_two_to_one_liner = false # true/false +nl_create_if_one_liner = false # true/false +nl_create_for_one_liner = false # true/false +nl_create_while_one_liner = false # true/false +nl_create_func_def_one_liner = false # true/false +nl_create_list_one_liner = false # true/false +nl_split_if_one_liner = true # true/false +nl_split_for_one_liner = true # true/false +nl_split_while_one_liner = true # true/false +donot_add_nl_before_cpp_comment = true # true/false +nl_max = 3 # unsigned number +nl_max_blank_in_func = 2 # unsigned number +nl_inside_empty_func = 1 # unsigned number +nl_before_func_body_proto = 0 # unsigned number +nl_before_func_body_def = 2 # unsigned number +nl_before_func_class_proto = 0 # unsigned number +nl_before_func_class_def = 0 # unsigned number +nl_after_func_proto = 0 # unsigned number +nl_after_func_proto_group = 2 # unsigned number +nl_after_func_class_proto = 0 # unsigned number +nl_after_func_class_proto_group = 2 # unsigned number +nl_class_leave_one_liner_groups = false # true/false +nl_after_func_body = 2 # unsigned number +nl_min_after_func_body = 0 # unsigned number +nl_max_after_func_body = 0 # unsigned number +nl_after_func_body_class = 0 # unsigned number +nl_after_func_body_one_liner = 0 # unsigned number +nl_typedef_blk_start = 0 # unsigned number +nl_typedef_blk_end = 0 # unsigned number +nl_typedef_blk_in = 0 # unsigned number +nl_var_def_blk_end_func_top = 0 # unsigned number +nl_var_def_blk_start = 0 # unsigned number +nl_var_def_blk_end = 0 # unsigned number +nl_var_def_blk_in = 0 # unsigned number +nl_before_block_comment = 0 # unsigned number +nl_before_c_comment = 0 # unsigned number +nl_before_cpp_comment = 0 # unsigned number +nl_after_multiline_comment = false # true/false +nl_after_label_colon = true # true/false +nl_before_struct = 0 # unsigned number +nl_after_struct = 2 # unsigned number +nl_before_class = 2 # unsigned number +nl_after_class = 2 # unsigned number +nl_before_namespace = 0 # unsigned number +nl_inside_namespace = 0 # unsigned number +nl_after_namespace = 2 # unsigned number +nl_before_access_spec = 2 # unsigned number +nl_after_access_spec = 1 # unsigned number +nl_comment_func_def = 0 # unsigned number +nl_after_try_catch_finally = 0 # unsigned number +nl_around_cs_property = 0 # unsigned number +nl_between_get_set = 0 # unsigned number +nl_property_brace = remove # ignore/add/remove/force/not_defined +eat_blanks_after_open_brace = true # true/false +eat_blanks_before_close_brace = true # true/false +nl_remove_extra_newlines = 0 # unsigned number +nl_after_annotation = add # ignore/add/remove/force/not_defined +nl_between_annotation = add # ignore/add/remove/force/not_defined +nl_before_whole_file_ifdef = 0 # unsigned number +nl_after_whole_file_ifdef = 0 # unsigned number +nl_before_whole_file_endif = 0 # unsigned number +nl_after_whole_file_endif = 0 # unsigned number +pos_arith = join # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_assign = join # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_bool = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_compare = join # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_conditional = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_comma = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_enum_comma = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_class_comma = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_constr_comma = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_class_colon = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_constr_colon = trail # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +pos_shift = join # ignore/break/force/lead/trail/join/lead_break/lead_force/trail_break/trail_force +code_width = 100 # unsigned number +ls_for_split_full = false # true/false +ls_func_split_full = false # true/false +ls_code_width = false # true/false +align_keep_tabs = false # true/false +align_with_tabs = false # true/false +align_on_tabstop = false # true/false +align_number_right = true # true/false +align_keep_extra_space = false # true/false +align_func_params = false # true/false +align_func_params_span = 0 # unsigned number +align_func_params_thresh = 0 # number +align_func_params_gap = 0 # unsigned number +align_constr_value_span = 0 # unsigned number +align_constr_value_thresh = 0 # number +align_constr_value_gap = 0 # unsigned number +align_same_func_call_params = false # true/false +align_same_func_call_params_span = 0 # unsigned number +align_same_func_call_params_thresh = 0 # number +align_var_def_span = 1 # unsigned number +align_var_def_star_style = 2 # unsigned number +align_var_def_amp_style = 2 # unsigned number +align_var_def_thresh = 6 # number +align_var_def_gap = 0 # unsigned number +align_var_def_colon = true # true/false +align_var_def_colon_gap = 0 # unsigned number +align_var_def_attribute = false # true/false +align_var_def_inline = false # true/false +align_assign_span = 1 # unsigned number +align_assign_func_proto_span = 0 # unsigned number +align_assign_thresh = 6 # number +align_assign_on_multi_var_defs = true # true/false +align_braced_init_list_span = 1 # unsigned number +align_braced_init_list_thresh = 20 # number +align_assign_decl_func = 0 # unsigned number +align_enum_equ_span = 1 # unsigned number +align_enum_equ_thresh = 20 # number +align_var_class_span = 1 # unsigned number +align_var_class_thresh = 10 # number +align_var_class_gap = 0 # unsigned number +align_var_struct_span = 1 # unsigned number +align_var_struct_thresh = 10 # number +align_var_struct_gap = 0 # unsigned number +align_struct_init_span = 1 # unsigned number +align_typedef_span = 1 # unsigned number +align_typedef_gap = 0 # unsigned number +align_typedef_func = 2 # unsigned number +align_typedef_star_style = 2 # unsigned number +align_typedef_amp_style = 2 # unsigned number +align_right_cmt_span = 2 # unsigned number +align_right_cmt_gap = 0 # unsigned number +align_right_cmt_mix = false # true/false +align_right_cmt_same_level = false # true/false +align_right_cmt_at_col = 0 # unsigned number +align_func_proto_span = 1 # unsigned number +align_func_proto_span_ignore_cont_lines = true # true/false +align_func_proto_star_style = 0 # unsigned number +align_func_proto_amp_style = 0 # unsigned number +align_func_proto_thresh = 0 # number +align_func_proto_gap = 1 # unsigned number +align_on_operator = true # true/false +align_mix_var_proto = false # true/false +align_single_line_func = false # true/false +align_single_line_brace = false # true/false +align_single_line_brace_gap = 0 # unsigned number +align_oc_msg_spec_span = 0 # unsigned number +align_nl_cont = 1 #number +align_nl_cont_spaces = 1 # unsigned number +align_pp_define_together = true # true/false +align_pp_define_span = 1 # unsigned number +align_pp_define_gap = 0 # unsigned number +align_left_shift = true # true/false +align_eigen_comma_init = false # true/false +align_asm_colon = false # true/false +align_oc_msg_colon_span = 0 # unsigned number +align_oc_msg_colon_first = false # true/false +align_oc_decl_colon = false # true/false +align_oc_msg_colon_xcode_like = false # true/false +cmt_width = 100 # unsigned number +cmt_reflow_mode = 0 # unsigned number +cmt_reflow_fold_regex_file = "" # string +cmt_reflow_indent_to_paragraph_start = false # true/false +cmt_convert_tab_to_spaces = false # true/false +cmt_indent_multi = false # true/false +cmt_align_doxygen_javadoc_tags = false # true/false +cmt_sp_before_doxygen_javadoc_tags = 1 # unsigned number +cmt_trailing_single_line_c_to_cpp = true # true/false +cmt_c_group = false # true/false +cmt_c_nl_start = false # true/false +cmt_c_nl_end = false # true/false +cmt_cpp_to_c = false # true/false +cmt_cpp_group = false # true/false +cmt_cpp_nl_start = false # true/false +cmt_cpp_nl_end = false # true/false +cmt_star_cont = false # true/false +cmt_sp_before_star_cont = 0 # unsigned number +cmt_sp_after_star_cont = 0 # unsigned number +cmt_multi_check_last = true # true/false +cmt_multi_first_len_minimum = 4 # unsigned number +cmt_insert_file_header = "" # string +cmt_insert_file_footer = "" # string +cmt_insert_func_header = "" # string +cmt_insert_class_header = "" # string +cmt_insert_oc_msg_header = "" # string +cmt_insert_before_preproc = false # true/false +cmt_insert_before_inlines = false # true/false +cmt_insert_before_ctor_dtor = false # true/false +mod_full_brace_do = add # ignore/add/remove/force/not_defined +mod_full_brace_for = add # ignore/add/remove/force/not_defined +mod_full_brace_function = add # ignore/add/remove/force/not_defined +mod_full_brace_if = add # ignore/add/remove/force/not_defined +mod_full_brace_if_chain = 0 # unsigned number +mod_full_brace_if_chain_only = false # true/false +mod_full_brace_while = add # ignore/add/remove/force/not_defined +mod_full_brace_using = add # ignore/add/remove/force/not_defined +mod_full_brace_nl = 0 # unsigned number +mod_full_brace_nl_block_rem_mlcond = false # true/false +mod_paren_on_return = remove # ignore/add/remove/force/not_defined +mod_paren_on_throw = force # ignore/add/remove/force/not_defined +mod_pawn_semicolon = false # true/false +mod_full_paren_if_bool = false # true/false +mod_full_paren_assign_bool = false # true/false +mod_full_paren_return_bool = false # true/false +mod_remove_extra_semicolon = true # true/false +mod_remove_duplicate_include = false # true/false +mod_add_force_c_closebrace_comment = false # true/false +mod_add_long_function_closebrace_comment = 0 # unsigned number +mod_add_long_namespace_closebrace_comment = 0 # unsigned number +mod_add_long_class_closebrace_comment = 0 # unsigned number +mod_add_long_switch_closebrace_comment = 0 # unsigned number +mod_add_long_ifdef_endif_comment = 0 # unsigned number +mod_add_long_ifdef_else_comment = 0 # unsigned number +mod_sort_case_sensitive = false # true/false +mod_sort_import = false # true/false +mod_sort_using = false # true/false +mod_sort_include = false # true/false +mod_sort_incl_import_prioritize_filename = false # true/false +mod_sort_incl_import_prioritize_extensionless = false # true/false +mod_sort_incl_import_prioritize_angle_over_quotes = false # true/false +mod_sort_incl_import_ignore_extension = false # true/false +mod_sort_incl_import_grouping_enabled = false # true/false +mod_move_case_break = true # true/false +mod_move_case_return = true # true/false +mod_case_brace = force # ignore/add/remove/force/not_defined +mod_remove_empty_return = true # true/false +mod_enum_last_comma = remove # ignore/add/remove/force/not_defined +mod_infinite_loop = 0 # unsigned number +mod_int_short = ignore # ignore/add/remove/force/not_defined +mod_short_int = ignore # ignore/add/remove/force/not_defined +mod_int_long = ignore # ignore/add/remove/force/not_defined +mod_long_int = ignore # ignore/add/remove/force/not_defined +mod_int_signed = ignore # ignore/add/remove/force/not_defined +mod_signed_int = ignore # ignore/add/remove/force/not_defined +mod_int_unsigned = ignore # ignore/add/remove/force/not_defined +mod_unsigned_int = ignore # ignore/add/remove/force/not_defined +mod_int_prefer_int_on_left = false # true/false +mod_sort_oc_properties = false # true/false +mod_sort_oc_property_class_weight = 0 # number +mod_sort_oc_property_thread_safe_weight = 0 # number +mod_sort_oc_property_readwrite_weight = 0 # number +mod_sort_oc_property_reference_weight = 0 # number +mod_sort_oc_property_getter_weight = 0 # number +mod_sort_oc_property_setter_weight = 0 # number +mod_sort_oc_property_nullability_weight = 0 # number +pp_indent_with_tabs = -1 # number +pp_indent = force # ignore/add/remove/force/not_defined +pp_indent_at_level = false # true/false +pp_indent_at_level0 = false # true/false +pp_indent_count = 2 # unsigned number +pp_space_after = remove # ignore/add/remove/force/not_defined +pp_space_count = 0 # unsigned number +pp_indent_region = 0 # number +pp_region_indent_code = false # true/false +pp_indent_if = 0 # number +pp_if_indent_code = false # true/false +pp_indent_in_guard = false # true/false +pp_define_at_level = false # true/false +pp_include_at_level = false # true/false +pp_ignore_define_body = false # true/false +pp_multiline_define_body_indent = 2 # number +pp_indent_case = false # true/false +pp_indent_func_def = false # true/false +pp_indent_extern = false # true/false +pp_indent_brace = 0 # number +pp_warn_unbalanced_if = true # true/false +include_category_0 = "" # string +include_category_1 = "" # string +include_category_2 = "" # string +use_indent_func_call_param = true # true/false +use_indent_continue_only_once = true # true/false +indent_cpp_lambda_only_once = false # true/false +use_sp_after_angle_always = false # true/false +use_options_overriding_for_qt_macros = true # true/false +use_form_feed_no_more_as_whitespace_character = false # true/false +warn_level_tabs_found_in_verbatim_string_literals = 2 # unsigned number +debug_max_number_of_loops = 0 # number +debug_line_number_to_protocol = 0 # number +debug_timeout = 0 # number +debug_truncate = 0 # unsigned number +debug_sort_the_tracks = true # true/false +debug_decode_the_flags = false # true/false +set_numbering_for_html_output = false # true/false +file_ext C .c .c.cmake +file_ext CPP .cpp .cxx .cc .h .hpp .hxx .hh .cpp.cmake .h.cmake .hpp.cmake diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.cfg new file mode 100644 index 00000000..13a883c7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.cfg @@ -0,0 +1,14 @@ +# width stuff +sp_sparen_brace = add +sp_arith = force +indent_columns = 4 +indent_with_tabs = 0 +nl_if_brace = remove +code_width = 60 +ls_for_split_full = true +cmt_width = 60 +cmt_c_group = true +cmt_c_nl_end = true +cmt_cpp_group = true +cmt_cpp_to_c = true +cmt_star_cont = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.rerun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.rerun.cfg new file mode 100644 index 00000000..c74e4020 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/common/width-2.rerun.cfg @@ -0,0 +1 @@ +include "width-2.cfg" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2185.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2185.cfg new file mode 100644 index 00000000..fda2290c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2185.cfg @@ -0,0 +1,2 @@ +indent_columns = 2 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2203.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2203.cfg new file mode 100644 index 00000000..e9c359cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/2203.cfg @@ -0,0 +1 @@ +sp_after_type = Remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/623_caret-spacing.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/623_caret-spacing.cfg new file mode 100644 index 00000000..4d60daa9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/623_caret-spacing.cfg @@ -0,0 +1 @@ +sp_arith = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/633_decl-in-func-typedef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/633_decl-in-func-typedef.cfg new file mode 100644 index 00000000..0edd4124 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/633_decl-in-func-typedef.cfg @@ -0,0 +1,5 @@ +sp_arith = add +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_func_type = remove +sp_ptr_star_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-0.cfg new file mode 100644 index 00000000..8aef4713 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-0.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +# +align_assign_decl_func = 0 +# +align_assign_span = 6 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-1.cfg new file mode 100644 index 00000000..f97e0abe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-1.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +# +align_assign_decl_func = 1 +# +align_assign_span = 6 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-2.cfg new file mode 100644 index 00000000..6c39bace --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/DefaultAndDelete-2.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +# +align_assign_decl_func = 2 +# +align_assign_span = 6 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Discussion_3987.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Discussion_3987.cfg new file mode 100644 index 00000000..5b27f6e1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Discussion_3987.cfg @@ -0,0 +1,2 @@ +mod_add_long_function_closebrace_comment = 3 +mod_add_force_c_closebrace_comment = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I1112-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I1112-2.cfg new file mode 100644 index 00000000..6b1bba41 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I1112-2.cfg @@ -0,0 +1,5 @@ +indent_continue = 8 +indent_access_spec_body = true + +#indent_member should not be used in I1112-2.cpp +indent_member = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I2103.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I2103.cfg new file mode 100644 index 00000000..5c34ca18 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/I2103.cfg @@ -0,0 +1 @@ +sp_before_byref = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1052.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1052.cfg new file mode 100644 index 00000000..91fe8899 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1052.cfg @@ -0,0 +1 @@ +nl_create_list_one_liner = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1130.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1130.cfg new file mode 100644 index 00000000..ff3f1c4e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1130.cfg @@ -0,0 +1,6 @@ +indent_with_tabs = 0 +# How to indent the continuation of ternary operator. +# 0: Off (default) +# 1: When the `if_false` is a continuation, indent it under `if_false` +# 2: When the `:` is a continuation, indent it under `?` +indent_ternary_operator = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1167.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1167.cfg new file mode 100644 index 00000000..feb56c83 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1167.cfg @@ -0,0 +1,3 @@ +nl_template_start = true +nl_template_args = true +nl_template_end = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1184.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1184.cfg new file mode 100644 index 00000000..0fdd95de --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1184.cfg @@ -0,0 +1,2 @@ +sp_before_square = remove +sp_before_vardef_square = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1460.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1460.cfg new file mode 100644 index 00000000..7adee60a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1460.cfg @@ -0,0 +1,2 @@ +set COMMENT_CPP G_DECLARE_FINAL_TYPE +sp_arith = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1511.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1511.cfg new file mode 100644 index 00000000..71c01f4d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1511.cfg @@ -0,0 +1,2 @@ +nl_func_type_name = force +nl_func_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1692.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1692.cfg new file mode 100644 index 00000000..db3cbdbe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1692.cfg @@ -0,0 +1,4 @@ +indent_columns = 2 +indent_with_tabs = 0 +indent_switch_case = 2 +indent_switch_break_with_case = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1703.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1703.cfg new file mode 100644 index 00000000..f8c889ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1703.cfg @@ -0,0 +1,2 @@ +sp_balance_nested_parens = true +sp_paren_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1734.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1734.cfg new file mode 100644 index 00000000..37a4c192 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1734.cfg @@ -0,0 +1 @@ +nl_after_func_body = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1753.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1753.cfg new file mode 100644 index 00000000..e0e5ab0b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1753.cfg @@ -0,0 +1,3 @@ +sp_arith = add +sp_cond_colon = add +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1813.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1813.cfg new file mode 100644 index 00000000..ff1ce9d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1813.cfg @@ -0,0 +1,10 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_namespace = true +indent_namespace_single_indent = true +use_indent_continue_only_once = true +indent_cpp_lambda_only_once = true +sp_cpp_lambda_paren_brace = add +set EXECUTION_CONTEXT DEVICE_LAMBDA_CONTEXT +set EXECUTION_CONTEXT HOST_DEVICE_LAMBDA_CONTEXT +set EXECUTION_CONTEXT __host__ __device__ diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1923.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1923.cfg new file mode 100644 index 00000000..f242e902 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1923.cfg @@ -0,0 +1,3 @@ +indent_align_assign = true +align_assign_span = 5 +align_var_def_span = 5 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1966.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1966.cfg new file mode 100644 index 00000000..be3a873d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_1966.cfg @@ -0,0 +1,2 @@ +sp_arith = add +pp_ignore_define_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2020.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2020.cfg new file mode 100644 index 00000000..2104e036 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2020.cfg @@ -0,0 +1,4 @@ +nl_func_decl_start = remove +nl_func_def_start = remove +nl_func_call_empty = remove +nl_func_call_start = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2045.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2045.cfg new file mode 100644 index 00000000..3fb7cfe9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2045.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_continue = 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2085.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2085.cfg new file mode 100644 index 00000000..2df8ebd8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2085.cfg @@ -0,0 +1,3 @@ +sp_type_func = add +sp_func_call_paren = remove +sp_func_call_paren_empty = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2091.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2091.cfg new file mode 100644 index 00000000..898b035b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2091.cfg @@ -0,0 +1,2 @@ +mod_sort_include = true +mod_sort_case_sensitive = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2101.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2101.cfg new file mode 100644 index 00000000..44e5a0e6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2101.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 + +# The position of conditional (b ? t : f) operators in wrapped expressions. +pos_conditional = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2149.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2149.cfg new file mode 100644 index 00000000..721daf0b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2149.cfg @@ -0,0 +1,3 @@ +indent_namespace = true +indent_continue = 8 +indent_shift = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2150.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2150.cfg new file mode 100644 index 00000000..5f518291 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2150.cfg @@ -0,0 +1 @@ +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2151.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2151.cfg new file mode 100644 index 00000000..0660e498 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2151.cfg @@ -0,0 +1 @@ +sp_before_unnamed_byref = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2163.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2163.cfg new file mode 100644 index 00000000..b7c31fe2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2163.cfg @@ -0,0 +1 @@ +nl_before_func_body_def = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2166.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2166.cfg new file mode 100644 index 00000000..2b473436 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2166.cfg @@ -0,0 +1,4 @@ +nl_cpp_lambda_leave_one_liners = true +sp_before_byref = remove +indent_columns = 3 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2170.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2170.cfg new file mode 100644 index 00000000..f66f0022 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2170.cfg @@ -0,0 +1,2 @@ +align_assign_span = 1 +align_assign_decl_func = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2186.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2186.cfg new file mode 100644 index 00000000..d694b699 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2186.cfg @@ -0,0 +1,3 @@ +nl_namespace_brace = force +indent_namespace = true +indent_namespace_limit = 10 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2195.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2195.cfg new file mode 100644 index 00000000..0c70840d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2195.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_after_if = force +cmt_indent_multi = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2219.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2219.cfg new file mode 100644 index 00000000..865142a1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2219.cfg @@ -0,0 +1 @@ +mod_full_brace_for = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2224.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2224.cfg new file mode 100644 index 00000000..07cef5af --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2224.cfg @@ -0,0 +1,5 @@ +sp_after_sparen = add +output_tab_size = 4 +indent_columns = 4 +nl_create_if_one_liner = true +mod_full_brace_if = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2229.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2229.cfg new file mode 100644 index 00000000..38cb5554 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2229.cfg @@ -0,0 +1,16 @@ +# Add or remove braces on a single-line 'if' statement. Braces will not be +# removed if the braced statement contains an 'else'. +mod_full_brace_if = remove + +# Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either +# have, or do not have, braces. Overrides mod_full_brace_if. +# +# 0: Don't override mod_full_brace_if +# 1: Add braces to all blocks if any block needs braces and remove braces if +# they can be removed from all blocks +# 2: Add braces to all blocks if any block already has braces, regardless of +# whether it needs them +# 3: Add braces to all blocks if any block needs braces and remove braces if +# they can be removed from all blocks, except if all blocks have braces +# despite none needing them +mod_full_brace_if_chain = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2232.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2232.cfg new file mode 100644 index 00000000..06730341 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2232.cfg @@ -0,0 +1 @@ +mod_full_brace_if = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2236.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2236.cfg new file mode 100644 index 00000000..6d30f256 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2236.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +align_assign_span = 5 +sp_assign_default = force +align_assign_func_proto_span = 4 +align_assign_decl_func = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2250.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2250.cfg new file mode 100644 index 00000000..705176b2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2250.cfg @@ -0,0 +1,5 @@ +indent_columns = 3 +indent_func_class_param = true +indent_func_param_double = true +nl_cpp_lambda_leave_one_liners = true +pos_bool = trail diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2281.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2281.cfg new file mode 100644 index 00000000..1d8b164e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2281.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +indent_switch_break_with_case = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2302.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2302.cfg new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2302.cfg diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2305.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2305.cfg new file mode 100644 index 00000000..7200d9ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2305.cfg @@ -0,0 +1,9 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true + +nl_class_brace = force + +nl_constr_colon = force +pos_constr_colon = lead_force + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2319.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2319.cfg new file mode 100644 index 00000000..aeb132b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2319.cfg @@ -0,0 +1,3 @@ +sp_arith = force # this one actually works +sp_before_ptr_star = remove +sp_after_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2343.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2343.cfg new file mode 100644 index 00000000..955a1f9a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2343.cfg @@ -0,0 +1,17 @@ +output_tab_size = 4 +indent_columns = 4 +indent_with_tabs = 0 +indent_cmt_with_tabs = false +indent_class_on_colon = true +indent_constr_colon = true +indent_relative_single_line_comments = true +indent_access_spec_body = true +nl_func_leave_one_liners = true +nl_end_of_file = force +nl_end_of_file_min = 4 +nl_before_opening_brace_func_class_def = force +nl_class_colon = add +pos_class_colon = lead +align_var_class_span = 3 +align_var_struct_span = 3 +pp_if_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2345.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2345.cfg new file mode 100644 index 00000000..27213b45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2345.cfg @@ -0,0 +1,5 @@ +# Whether to indent the body of a 'namespace'. +indent_namespace = true +# If the body of the namespace is longer than this number, it won't be +# indented. Requires indent_namespace=true. 0 means no limit. +indent_namespace_limit = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2368.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2368.cfg new file mode 100644 index 00000000..d1496108 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2368.cfg @@ -0,0 +1 @@ +align_same_func_call_params = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2383.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2383.cfg new file mode 100644 index 00000000..313d9efb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2383.cfg @@ -0,0 +1,3 @@ +nl_before_block_comment = 2 +nl_before_c_comment = 2 +nl_before_cpp_comment = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2386.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2386.cfg new file mode 100644 index 00000000..3a121c2e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2386.cfg @@ -0,0 +1 @@ +use_form_feed_no_more_as_whitespace_character = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2428.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2428.cfg new file mode 100644 index 00000000..8af28414 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2428.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +sp_type_brace_init_lst = remove +sp_word_brace_init_lst = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2437.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2437.cfg new file mode 100644 index 00000000..b21679ce --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2437.cfg @@ -0,0 +1,2 @@ +sp_func_proto_paren = remove +sp_func_type_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440.cfg new file mode 100644 index 00000000..3da56066 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440.cfg @@ -0,0 +1 @@ +pp_region_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440_nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440_nl.cfg new file mode 100644 index 00000000..3da56066 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2440_nl.cfg @@ -0,0 +1 @@ +pp_region_indent_code = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2478.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2478.cfg new file mode 100644 index 00000000..bb4425d9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2478.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_assign_span = 1 +align_var_class_span = 1 +align_left_shift = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2561.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2561.cfg new file mode 100644 index 00000000..03a40504 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2561.cfg @@ -0,0 +1,5 @@ +sp_func_def_paren = force +indent_columns = 3 +nl_func_leave_one_liners = true +nl_func_type_name = force +mod_add_long_function_closebrace_comment = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2570.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2570.cfg new file mode 100644 index 00000000..6a9f2d25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2570.cfg @@ -0,0 +1 @@ +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2574.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2574.cfg new file mode 100644 index 00000000..d96f0980 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2574.cfg @@ -0,0 +1,9 @@ +output_tab_size = 2 +sp_after_comma = force +indent_columns = 2 +indent_with_tabs = 2 +indent_member = 2 +nl_fcall_brace = force +nl_after_semicolon = true +nl_before_member = force +nl_remove_extra_newlines = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2582.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2582.cfg new file mode 100644 index 00000000..f634b12e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2582.cfg @@ -0,0 +1,7 @@ +indent_columns = 2 + +# How to indent a close parenthesis after a newline. +# 0: Indent to body level (default) +# 1: Align under the open parenthesis +# 2: Indent to the brace level +indent_paren_close = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2591.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2591.cfg new file mode 100644 index 00000000..6ca8934c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2591.cfg @@ -0,0 +1,3 @@ +indent_columns = 2 +indent_align_assign = false +indent_off_after_assign = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2594.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2594.cfg new file mode 100644 index 00000000..1d7941be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2594.cfg @@ -0,0 +1,11 @@ +output_tab_size = 4 +sp_before_ellipsis = remove +sp_inside_braces = remove +sp_brace_else = force +indent_columns = 4 +nl_func_leave_one_liners = true +nl_if_brace = add +nl_brace_else = remove +nl_create_if_one_liner = true +mod_full_brace_if_chain = 1 +mod_full_brace_nl = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2596.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2596.cfg new file mode 100644 index 00000000..b6338859 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2596.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +sp_cond_colon = ignore +sp_cond_question = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2604.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2604.cfg new file mode 100644 index 00000000..daeb9bc6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2604.cfg @@ -0,0 +1,9 @@ +# Add or remove newline after each ',' in a function declaration. +nl_func_decl_args = remove # ignore/add/remove/force + +# Add or remove newline after each ',' in a function definition. +nl_func_def_args = remove # ignore/add/remove/force` + +nl_func_call_args = remove + +sp_after_comma = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2668.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2668.cfg new file mode 100644 index 00000000..40a69dcf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2668.cfg @@ -0,0 +1 @@ +nl_var_def_blk_end = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2688.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2688.cfg new file mode 100644 index 00000000..4baf4b3f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2688.cfg @@ -0,0 +1,5 @@ +sp_arith = true +sp_bool = true +sp_compare = true +indent_columns = 2 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2689.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2689.cfg new file mode 100644 index 00000000..e498e830 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2689.cfg @@ -0,0 +1,5 @@ +sp_after_ptr_star = remove +indent_columns = 3 +indent_class = true +indent_label = 2 +indent_access_spec = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2692.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2692.cfg new file mode 100644 index 00000000..bce2060e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2692.cfg @@ -0,0 +1 @@ +nl_var_def_blk_start = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2703.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2703.cfg new file mode 100644 index 00000000..ed7b8ddb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2703.cfg @@ -0,0 +1,9 @@ +indent_columns = 4 +pp_multiline_define_body_indent = 4 +indent_with_tabs = 0 +#Whether to align variable definitions in prototypes and functions. +align_func_params = true +#The span for aligning parameter definitions in function on parameter name. +# 0: Don't align (default). +align_func_params_span = 1 +sp_after_byref = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2734.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2734.cfg new file mode 100644 index 00000000..83fdd868 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2734.cfg @@ -0,0 +1 @@ +sp_balance_nested_parens = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2735.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2735.cfg new file mode 100644 index 00000000..32a72aa2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2735.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_switch_case = 4 +# indent 'break' with 'case' from 'switch'. +indent_switch_break_with_case = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2742.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2742.cfg new file mode 100644 index 00000000..eba0468c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2742.cfg @@ -0,0 +1 @@ +align_var_def_span = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2752.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2752.cfg new file mode 100644 index 00000000..e15e7702 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2752.cfg @@ -0,0 +1 @@ +cmt_insert_file_footer = "footer.txt" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2757.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2757.cfg new file mode 100644 index 00000000..e2118df5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2757.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +align_func_params = true +align_func_params_span = 1 +align_func_params_gap = 0 +align_func_params_thresh = 0 +sp_after_byref = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2758.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2758.cfg new file mode 100644 index 00000000..dd2d0f6b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2758.cfg @@ -0,0 +1,2 @@ +nl_func_call_start = force +nl_func_call_end = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2759.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2759.cfg new file mode 100644 index 00000000..abdc53f4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2759.cfg @@ -0,0 +1,8 @@ +nl_constr_colon = force +nl_constr_init_args = force +pos_constr_comma = trail +pos_constr_colon = lead +indent_columns = 4 +indent_ctor_init = 0 +indent_ctor_init_leading = 2 +indent_constr_colon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2771.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2771.cfg new file mode 100644 index 00000000..b34e82a7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2771.cfg @@ -0,0 +1,6 @@ +indent_with_tabs = 0 +indent_class = true +align_func_proto_span = 1 +align_single_line_func = true +align_on_operator = true +nl_func_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2794.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2794.cfg new file mode 100644 index 00000000..c193054f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2794.cfg @@ -0,0 +1,7 @@ +indent_with_tabs = 0 +nl_after_func_body = 3 +cmt_width = 75 +cmt_star_cont = true +cmt_sp_after_star_cont = 1 + +cmt_indent_multi = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2795.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2795.cfg new file mode 100644 index 00000000..353cafa8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2795.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_create_func_def_one_liner = true +code_width = 140 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2823.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2823.cfg new file mode 100644 index 00000000..de58e056 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2823.cfg @@ -0,0 +1,3 @@ +# If a namespace body exceeds the specified number of newlines and doesn't +# have a comment after the close brace, a comment will be added. +mod_add_long_namespace_closebrace_comment = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2831.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2831.cfg new file mode 100644 index 00000000..e7271af0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2831.cfg @@ -0,0 +1,2 @@ +align_func_proto_span = 1 +align_mix_var_proto = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2836.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2836.cfg new file mode 100644 index 00000000..41151a57 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2836.cfg @@ -0,0 +1,2 @@ +# Add or remove newline between 'if' and '{'. +nl_if_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2873.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2873.cfg new file mode 100644 index 00000000..be881c98 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2873.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +nl_constr_init_args = remove +nl_class_init_args = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2879.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2879.cfg new file mode 100644 index 00000000..ba98f974 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2879.cfg @@ -0,0 +1,2 @@ +sp_bool = add +sp_before_byref = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2886.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2886.cfg new file mode 100644 index 00000000..eb4b5ca2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2886.cfg @@ -0,0 +1 @@ +sp_compare = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2890.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2890.cfg new file mode 100644 index 00000000..81ba72ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2890.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +indent_member_single = true +use_indent_continue_only_once = true +nl_before_member = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2902.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2902.cfg new file mode 100644 index 00000000..5806b371 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2902.cfg @@ -0,0 +1 @@ +mod_enum_last_comma = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2907.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2907.cfg new file mode 100644 index 00000000..fa5b3018 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2907.cfg @@ -0,0 +1,6 @@ +indent_columns = 2 +nl_class_leave_one_liners = true +nl_before_opening_brace_func_class_def = force +nl_after_func_class_proto_group = 2 +nl_class_leave_one_liner_groups = true +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2914.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2914.cfg new file mode 100644 index 00000000..98d4511c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2914.cfg @@ -0,0 +1,5 @@ +nl_func_call_start_multi_line = true +nl_func_call_args_multi_line = true +indent_columns = 4 +indent_with_tabs = 0 +donot_add_nl_before_cpp_comment = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2921.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2921.cfg new file mode 100644 index 00000000..142dc8dc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2921.cfg @@ -0,0 +1 @@ +align_func_params_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2930.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2930.cfg new file mode 100644 index 00000000..bd8cb9b0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2930.cfg @@ -0,0 +1,15 @@ +output_tab_size = 4 +sp_before_ptr_star = add +sp_between_ptr_star = remove +sp_func_def_paren = add +indent_columns = 4 +indent_with_tabs = 0 +donot_indent_func_def_close_paren = true +nl_func_type_name = add +nl_func_def_start = add +nl_func_def_args = add +nl_func_def_end = add +nl_fdef_brace = add +align_on_tabstop = true +align_func_params = true +align_var_def_star_style = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2942.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2942.cfg new file mode 100644 index 00000000..e72ddc77 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2942.cfg @@ -0,0 +1,2 @@ +sp_special_semi = remove +sp_before_semi = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2949.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2949.cfg new file mode 100644 index 00000000..b5ea1ffb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2949.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2957.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2957.cfg new file mode 100644 index 00000000..aaf2b1a1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2957.cfg @@ -0,0 +1,4 @@ +# Whether to add a newline after the type in an unnamed temporary +# direct-list-initialization, better: +# before a direct-list-initialization. +nl_type_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2971.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2971.cfg new file mode 100644 index 00000000..1255b541 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_2971.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_with_tabs = 0 +align_var_def_span = 1 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3010.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3010.cfg new file mode 100644 index 00000000..5f518291 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3010.cfg @@ -0,0 +1 @@ +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3025.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3025.cfg new file mode 100644 index 00000000..5e545c50 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3025.cfg @@ -0,0 +1 @@ +sp_cmt_cpp_start = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3034.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3034.cfg new file mode 100644 index 00000000..77557ac3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3034.cfg @@ -0,0 +1,4 @@ +output_tab_size = 2 +indent_columns = 2 +nl_after_brace_open = true +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3040.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3040.cfg new file mode 100644 index 00000000..12c8ebaf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3040.cfg @@ -0,0 +1,7 @@ +indent_columns = 2 +indent_switch_case = 2 +nl_before_case = true +nl_after_case = true +eat_blanks_before_close_brace = true +mod_move_case_break = true +mod_case_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3044.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3044.cfg new file mode 100644 index 00000000..c2f9ade5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3044.cfg @@ -0,0 +1,7 @@ +output_tab_size = 2 +indent_columns = 2 +indent_switch_case = 2 +nl_before_case = true +nl_after_case = true +nl_after_switch = force +mod_case_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3048.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3048.cfg new file mode 100644 index 00000000..fb4171d7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3048.cfg @@ -0,0 +1,10 @@ +output_tab_size = 2 +indent_columns = 2 +indent_switch_case = 2 +nl_if_brace = force +nl_else_brace = force +nl_before_case = true +nl_after_case = true +eat_blanks_before_close_brace = true +mod_full_brace_if = add +mod_case_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054-2.cfg new file mode 100644 index 00000000..a41640f0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054-2.cfg @@ -0,0 +1,3 @@ +indent_columns = 2 +nl_fdef_brace = force +code_width = 80 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054.cfg new file mode 100644 index 00000000..a88303ba --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3054.cfg @@ -0,0 +1,5 @@ +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_argument_list = remove +sp_cpp_lambda_paren_brace = remove +sp_inside_square = remove +indent_columns = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3055.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3055.cfg new file mode 100644 index 00000000..ccf5c75f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3055.cfg @@ -0,0 +1,6 @@ +pp_space_after = force +pp_space_count = 2 + +# Whether to indent '#define' at the brace level. If false, these are +# indented from column 1. +pp_define_at_level=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3058.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3058.cfg new file mode 100644 index 00000000..1619b851 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3058.cfg @@ -0,0 +1,5 @@ +indent_columns = 2 +indent_with_tabs = 0 +indent_switch_case = 2 +nl_after_case = true +mod_case_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_0nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_0nl.cfg new file mode 100644 index 00000000..53a71184 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_0nl.cfg @@ -0,0 +1,13 @@ +cmt_width=30 +code_width=30 +eat_blanks_after_open_brace=true +nl_inside_empty_func=2 +nl_fdef_brace=force +indent_columns=4 +indent_class=true +indent_with_tabs=0 +input_tab_size=4 +nl_func_type_name=force +nl_before_func_body_def=2 +nl_end_of_file=remove + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_1nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_1nl.cfg new file mode 100644 index 00000000..ad1c0bbc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_1nl.cfg @@ -0,0 +1,14 @@ +cmt_width=30 +code_width=30 +eat_blanks_after_open_brace=true +nl_inside_empty_func=2 +nl_fdef_brace=force +indent_columns=4 +indent_class=true +indent_with_tabs=0 +input_tab_size=4 +nl_func_type_name=force +nl_before_func_body_def=2 +nl_end_of_file=force +nl_end_of_file_min=1 + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_2nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_2nl.cfg new file mode 100644 index 00000000..27325b31 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_2nl.cfg @@ -0,0 +1,14 @@ +cmt_width=30 +code_width=30 +eat_blanks_after_open_brace=true +nl_inside_empty_func=2 +nl_fdef_brace=force +indent_columns=4 +indent_class=true +indent_with_tabs=0 +input_tab_size=4 +nl_func_type_name=force +nl_before_func_body_def=2 +nl_end_of_file=force +nl_end_of_file_min=2 + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_3nl.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_3nl.cfg new file mode 100644 index 00000000..276c7d72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3061_3nl.cfg @@ -0,0 +1,14 @@ +cmt_width=30 +code_width=30 +eat_blanks_after_open_brace=true +nl_inside_empty_func=2 +nl_fdef_brace=force +indent_columns=4 +indent_class=true +indent_with_tabs=0 +input_tab_size=4 +nl_func_type_name=force +nl_before_func_body_def=2 +nl_end_of_file=force +nl_end_of_file_min=3 + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3080.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3080.cfg new file mode 100644 index 00000000..748a6dad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3080.cfg @@ -0,0 +1 @@ +sp_after_decltype = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3097.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3097.cfg new file mode 100644 index 00000000..ed31649e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3097.cfg @@ -0,0 +1 @@ +nl_var_def_blk_start = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3164.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3164.cfg new file mode 100644 index 00000000..10cf639b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3164.cfg @@ -0,0 +1 @@ +mod_remove_duplicate_include = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3197.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3197.cfg new file mode 100644 index 00000000..2177bfff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3197.cfg @@ -0,0 +1,4 @@ +sp_before_byref = ignore +sp_before_byref_func = ignore +sp_after_byref = ignore +sp_after_byref_func = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3198.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3198.cfg new file mode 100644 index 00000000..28852f24 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3198.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +sp_before_dc = remove +sp_after_dc = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3203.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3203.cfg new file mode 100644 index 00000000..69cd5054 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3203.cfg @@ -0,0 +1,5 @@ +indent_with_tabs = 0 +newlines = crlf +output_tab_size = 4 +indent_columns = 4 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-f.cfg new file mode 100644 index 00000000..fffa496d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-f.cfg @@ -0,0 +1,11 @@ +indent_with_tabs = 0 +sp_after_ptr_star = force +sp_after_ptr_star_func = force +sp_after_ptr_star_trailing = force +sp_after_ptr_star_qualifier = force +sp_before_ptr_star = force +sp_before_ptr_star_func = force +sp_before_ptr_star_trailing = force +sp_before_unnamed_ptr_star = force +sp_between_ptr_star = force +sp_ptr_star_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-i.cfg new file mode 100644 index 00000000..52060d80 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-i.cfg @@ -0,0 +1,11 @@ +indent_with_tabs = 0 +sp_after_ptr_star = ignore +sp_after_ptr_star_func = ignore +sp_after_ptr_star_trailing = ignore +sp_after_ptr_star_qualifier = ignore +sp_before_ptr_star = ignore +sp_before_ptr_star_func = ignore +sp_before_ptr_star_trailing = ignore +sp_before_unnamed_ptr_star = ignore +sp_between_ptr_star = ignore +sp_ptr_star_paren = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-ir.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-ir.cfg new file mode 100644 index 00000000..63c52660 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-ir.cfg @@ -0,0 +1,12 @@ +indent_with_tabs = 0 +sp_after_ptr_star = ignore +sp_after_ptr_star_func = ignore +sp_after_ptr_star_trailing = ignore +sp_after_ptr_star_qualifier = ignore +sp_before_ptr_star = remove +sp_before_ptr_star_func = ignore +sp_before_ptr_star_trailing = ignore +sp_before_unnamed_ptr_star = ignore +sp_between_ptr_star = ignore +sp_ptr_star_paren = ignore +sp_before_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-r.cfg new file mode 100644 index 00000000..c62cb16e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3220-r.cfg @@ -0,0 +1,11 @@ +indent_with_tabs = 0 +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_after_ptr_star_trailing = remove +sp_after_ptr_star_qualifier = remove +sp_before_ptr_star = remove +sp_before_ptr_star_func = remove +sp_before_ptr_star_trailing = remove +sp_before_unnamed_ptr_star = remove +sp_between_ptr_star = remove +sp_ptr_star_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3236.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3236.cfg new file mode 100644 index 00000000..51a54f89 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3236.cfg @@ -0,0 +1,3 @@ +# Whether to fully parenthesize Boolean expressions in 'while' and 'if' +# statement, as in 'if (a && b > c)' => 'if (a && (b > c))'. +mod_full_paren_if_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3237.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3237.cfg new file mode 100644 index 00000000..5c47913d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3237.cfg @@ -0,0 +1 @@ +sp_before_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3252.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3252.cfg new file mode 100644 index 00000000..db7fe8f2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3252.cfg @@ -0,0 +1 @@ +sp_after_tparen_close = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3284.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3284.cfg new file mode 100644 index 00000000..51de787c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3284.cfg @@ -0,0 +1,5 @@ +align_assign_span = 1 +# 0: Align with other assignments (default) +# 1: Align with each other, ignoring regular assignments +# 2: Don't align +align_assign_decl_func = 2 # (don't align) didn't work if function contains noexcept keyword. diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3294.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3294.cfg new file mode 100644 index 00000000..994a3fe7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3294.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +indent_member_single = true + +indent_inside_ternary_operator = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-f.cfg new file mode 100644 index 00000000..2c88f416 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-f.cfg @@ -0,0 +1,2 @@ +sp_ellipsis_parameter_pack = force +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-i.cfg new file mode 100644 index 00000000..fc7534fe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-i.cfg @@ -0,0 +1,2 @@ +sp_ellipsis_parameter_pack = ignore +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-r.cfg new file mode 100644 index 00000000..aa884661 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3309-r.cfg @@ -0,0 +1,2 @@ +sp_ellipsis_parameter_pack = remove +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3316.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3316.cfg new file mode 100644 index 00000000..901ad6e4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3316.cfg @@ -0,0 +1,3 @@ +mod_full_paren_if_bool = true +mod_full_paren_assign_bool = true +mod_full_paren_return_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3357.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3357.cfg new file mode 100644 index 00000000..3f3c5075 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3357.cfg @@ -0,0 +1 @@ +cmt_align_doxygen_javadoc_tags = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3409.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3409.cfg new file mode 100644 index 00000000..b8424b25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3409.cfg @@ -0,0 +1,6 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = true
+indent_align_assign = false
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3413.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3413.cfg new file mode 100644 index 00000000..99a9f4a9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3413.cfg @@ -0,0 +1,4 @@ +align_func_proto_span = 1 +align_single_line_func = true +align_single_line_brace = true +nl_func_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-1.cfg new file mode 100644 index 00000000..6c86f2db --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-1.cfg @@ -0,0 +1,3 @@ +align_assign_span = 1 +align_assign_thresh = 40 +align_assign_on_multi_var_defs = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-2.cfg new file mode 100644 index 00000000..beb76fde --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3422-2.cfg @@ -0,0 +1,3 @@ +align_assign_span = 1 +align_assign_thresh = 40 +align_assign_on_multi_var_defs = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428.cfg new file mode 100644 index 00000000..d9f9789c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428.cfg @@ -0,0 +1,7 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_2.cfg new file mode 100644 index 00000000..4e750218 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_2.cfg @@ -0,0 +1,8 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = true
+indent_namespace = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_3.cfg new file mode 100644 index 00000000..c404d45b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_3.cfg @@ -0,0 +1,9 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = true
+indent_namespace = true
+indent_namespace_single_indent = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_4.cfg new file mode 100644 index 00000000..e3078665 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_4.cfg @@ -0,0 +1,7 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = false
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_5.cfg new file mode 100644 index 00000000..6d0a4c77 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_5.cfg @@ -0,0 +1,8 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = false
+indent_namespace = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_6.cfg new file mode 100644 index 00000000..30b78a65 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3428_6.cfg @@ -0,0 +1,9 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = false
+indent_namespace = true
+indent_namespace_single_indent = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3446.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3446.cfg new file mode 100644 index 00000000..a66901cc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3446.cfg @@ -0,0 +1 @@ +nl_func_scope_name = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3448.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3448.cfg new file mode 100644 index 00000000..77619e74 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3448.cfg @@ -0,0 +1,22 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_continue = 4 +indent_class = true +indent_class_colon = true +indent_class_on_colon = true +indent_constr_colon = true +indent_ctor_init_leading = 0 +indent_ctor_init_following = 0 +indent_ctor_init = -4 +indent_access_spec = -4 +indent_before_class_colon = -4 +nl_class_brace = true +nl_class_init_args = force +nl_class_colon = force +nl_constr_init_args = force +nl_constr_colon = force +pos_class_colon = lead_force +pos_class_comma = lead_force +pos_constr_colon = lead_force +pos_constr_comma = lead_force +nl_collapse_empty_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3513.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3513.cfg new file mode 100644 index 00000000..34f93540 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3513.cfg @@ -0,0 +1,4 @@ +nl_fcall_brace = force +nl_struct_brace = force +nl_fdef_brace = force +nl_ds_struct_enum_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3546.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3546.cfg new file mode 100644 index 00000000..56965ae8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3546.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_ignore_first_continue = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3550.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3550.cfg new file mode 100644 index 00000000..1a4502fa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3550.cfg @@ -0,0 +1,7 @@ +indent_cpp_lambda_body = true
+indent_cpp_lambda_only_once = true
+indent_align_assign = false
+
+indent_columns = 4
+indent_with_tabs = 0
+indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3552.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3552.cfg new file mode 100644 index 00000000..f9a0eca8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3552.cfg @@ -0,0 +1,6 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_namespace = true +indent_class = true +indent_access_spec = -4 +indent_continue_class_head = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3558.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3558.cfg new file mode 100644 index 00000000..7999dcbf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3558.cfg @@ -0,0 +1,2 @@ +sp_before_byref = remove +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3570.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3570.cfg new file mode 100644 index 00000000..f291c20d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3570.cfg @@ -0,0 +1,3 @@ +indent_class = true +indent_paren_after_func_def = true +indent_paren_after_func_decl = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-a.cfg new file mode 100644 index 00000000..052cf16f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-a.cfg @@ -0,0 +1,2 @@ +indent_paren_after_func_def = true +use_indent_continue_only_once = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-b.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-b.cfg new file mode 100644 index 00000000..2b187f20 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3576-b.cfg @@ -0,0 +1,2 @@ +indent_paren_after_func_def = true +indent_ignore_first_continue = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3604.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3604.cfg new file mode 100644 index 00000000..5806b371 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3604.cfg @@ -0,0 +1 @@ +mod_enum_last_comma = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3614.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3614.cfg new file mode 100644 index 00000000..f3b66508 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3614.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = force +sp_cmt_cpp_lint = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3710.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3710.cfg new file mode 100644 index 00000000..46339ba3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3710.cfg @@ -0,0 +1,3 @@ +sp_balance_nested_parens = true +indent_member = 2 +indent_member_single = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3785.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3785.cfg new file mode 100644 index 00000000..64f056a5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3785.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_with_tabs = 0 +align_var_def_span = 2 +align_var_def_star_style = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.cfg new file mode 100644 index 00000000..c5c081aa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.cfg @@ -0,0 +1,4 @@ +sp_after_comma = add +sp_inside_braces = force +indent_with_tabs = 0 +align_struct_init_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.rerun.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.rerun.cfg new file mode 100644 index 00000000..c514c32c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3786.rerun.cfg @@ -0,0 +1 @@ +include Issue_3786.cfg diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3863.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3863.cfg new file mode 100644 index 00000000..eb716a45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3863.cfg @@ -0,0 +1 @@ +nl_end_of_file = ignore
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865.cfg new file mode 100644 index 00000000..33384989 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865.cfg @@ -0,0 +1 @@ +sp_arith = add
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865_2.cfg new file mode 100644 index 00000000..4c4ef95a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3865_2.cfg @@ -0,0 +1,2 @@ +sp_arith = add
+sp_before_byref = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3914.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3914.cfg new file mode 100644 index 00000000..fc8c28ff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3914.cfg @@ -0,0 +1,5 @@ +nl_func_call_paren = remove + +sp_func_call_user_inside_rparen = force +sp_inside_rparens = force +sp_inside_rparen = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3915.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3915.cfg new file mode 100644 index 00000000..59662afb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3915.cfg @@ -0,0 +1 @@ +indent_member_single = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3916.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3916.cfg new file mode 100644 index 00000000..dbc91f40 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3916.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +align_same_func_call_params = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3919.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3919.cfg new file mode 100644 index 00000000..7715cb13 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3919.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = add +sp_cmt_cpp_pvs = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3920.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3920.cfg new file mode 100644 index 00000000..6a9f2d25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3920.cfg @@ -0,0 +1 @@ +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3965.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3965.cfg new file mode 100644 index 00000000..84ffaf1e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3965.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +nl_end_of_file = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3967.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3967.cfg new file mode 100644 index 00000000..b5ea1ffb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3967.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3983.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3983.cfg new file mode 100644 index 00000000..9c2f9036 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_3983.cfg @@ -0,0 +1 @@ +indent_member_single=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4036.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4036.cfg new file mode 100644 index 00000000..0880c62f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4036.cfg @@ -0,0 +1,2 @@ +sp_after_bit_colon = remove +sp_before_bit_colon = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4080.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4080.cfg new file mode 100644 index 00000000..faf107eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4080.cfg @@ -0,0 +1 @@ +sp_before_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4094.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4094.cfg new file mode 100644 index 00000000..0b717219 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4094.cfg @@ -0,0 +1,2 @@ +sp_cpp_lambda_argument_list_empty = force +sp_cpp_lambda_argument_list = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4239.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4239.cfg new file mode 100644 index 00000000..0988ac8b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_4239.cfg @@ -0,0 +1,5 @@ +# Whether to fully parenthesize Boolean expressions after '=' +# statement, as in 'x = a && b > c;' => 'x = (a && (b > c));'. +mod_full_paren_assign_bool = true + +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_750.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_750.cfg new file mode 100644 index 00000000..b22aff36 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_750.cfg @@ -0,0 +1,9 @@ +indent_class = true + +align_var_def_span = 1 +align_var_def_thresh = 0 +align_var_def_gap = 0 + +align_assign_span = 1 +align_braced_init_list_span = 1 +align_var_class_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_931.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_931.cfg new file mode 100644 index 00000000..45879950 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_931.cfg @@ -0,0 +1,4 @@ +indent_continue = 0 +indent_func_def_param = false +indent_func_def_param_paren_pos_threshold = 40 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_995-do.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_995-do.cfg new file mode 100644 index 00000000..ba4e6387 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Issue_995-do.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +sp_do_brace_open = force +sp_brace_close_while = force +sp_while_paren_open = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-f.cfg new file mode 100644 index 00000000..8da1e530 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-f.cfg @@ -0,0 +1,2 @@ +nl_start_of_file = force +nl_start_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-r.cfg new file mode 100644 index 00000000..329f5112 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/NewLine-r.cfg @@ -0,0 +1,2 @@ +nl_start_of_file = remove +nl_end_of_file = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/STUCK_macro-difficulties.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/STUCK_macro-difficulties.cfg new file mode 100644 index 00000000..c7ce0fd8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/STUCK_macro-difficulties.cfg @@ -0,0 +1,6 @@ +sp_pp_concat = ignore + +# try to get rid of the need for this. though is it really possible without uncrustify processing #includes itself? +# it would have no way otherwise of knowing that 'inline' suddenly is no longer a keyword. really need to add the ability +# to set this inline in the file that is hitting the trouble instead. +set WORD inline diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U02-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U02-Cpp.cfg new file mode 100644 index 00000000..e8b4846a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U02-Cpp.cfg @@ -0,0 +1,2 @@ +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U03-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U03-Cpp.cfg new file mode 100644 index 00000000..d0f33089 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U03-Cpp.cfg @@ -0,0 +1,4 @@ +sp_assign = add +sp_after_comma = add +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U04-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U04-Cpp.cfg new file mode 100644 index 00000000..75f78b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U04-Cpp.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U05-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U05-Cpp.cfg new file mode 100644 index 00000000..ac01c51c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U05-Cpp.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U06-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U06-Cpp.cfg new file mode 100644 index 00000000..55fcc716 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U06-Cpp.cfg @@ -0,0 +1,5 @@ +input_tab_size = 4 +sp_inside_sparen = remove +indent_columns = 4 +nl_if_brace = force +nl_else_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U07-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U07-Cpp.cfg new file mode 100644 index 00000000..9cee7fef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U07-Cpp.cfg @@ -0,0 +1,5 @@ +sp_func_call_paren = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +use_options_overriding_for_qt_macros = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U16-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U16-Cpp.cfg new file mode 100644 index 00000000..425ee375 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U16-Cpp.cfg @@ -0,0 +1,2 @@ +input_tab_size = 4 +pp_ignore_define_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U18-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U18-Cpp.cfg new file mode 100644 index 00000000..75f78b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U18-Cpp.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U21-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U21-Cpp.cfg new file mode 100644 index 00000000..fd27114f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U21-Cpp.cfg @@ -0,0 +1,3 @@ +input_tab_size = 4 +sp_after_type = ignore +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U23-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U23-Cpp.cfg new file mode 100644 index 00000000..04863187 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U23-Cpp.cfg @@ -0,0 +1,2 @@ +sp_inside_paren = remove +sp_inside_angle = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U25-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U25-Cpp.cfg new file mode 100644 index 00000000..75f78b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U25-Cpp.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U26-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U26-Cpp.cfg new file mode 100644 index 00000000..39c58934 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U26-Cpp.cfg @@ -0,0 +1,5 @@ +sp_func_call_paren = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_off_after_return_new = true +sp_func_def_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U27-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U27-Cpp.cfg new file mode 100644 index 00000000..e8b4846a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U27-Cpp.cfg @@ -0,0 +1,2 @@ +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U28-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U28-Cpp.cfg new file mode 100644 index 00000000..ac01c51c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U28-Cpp.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U29-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U29-Cpp.cfg new file mode 100644 index 00000000..d65f6b27 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U29-Cpp.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U30-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U30-Cpp.cfg new file mode 100644 index 00000000..75f78b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U30-Cpp.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U31-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U31-Cpp.cfg new file mode 100644 index 00000000..bd45658a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U31-Cpp.cfg @@ -0,0 +1 @@ +sp_after_type = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U33-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U33-Cpp.cfg new file mode 100644 index 00000000..0d78de45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U33-Cpp.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U36-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U36-Cpp.cfg new file mode 100644 index 00000000..b655be2c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/U36-Cpp.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_class = true + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-10496.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-10496.cfg new file mode 100644 index 00000000..42f6ee64 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-10496.cfg @@ -0,0 +1,2 @@ +sp_after_dc = remove +sp_before_dc = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-12046.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-12046.cfg new file mode 100644 index 00000000..4dcd62eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-12046.cfg @@ -0,0 +1,3 @@ +sp_after_type = ignore +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1340.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1340.cfg new file mode 100644 index 00000000..8a43dca1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1340.cfg @@ -0,0 +1 @@ +nl_namespace_two_to_one_liner = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1344.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1344.cfg new file mode 100644 index 00000000..9e9937d2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1344.cfg @@ -0,0 +1,3 @@ +input_tab_size = 4 +indent_columns = 4 +indent_ignore_asm_block = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1346.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1346.cfg new file mode 100644 index 00000000..4074ff52 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1346.cfg @@ -0,0 +1,4 @@ +sp_cmt_cpp_start = Add +sp_cmt_cpp_doxygen = True +indent_columns = 4 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1347.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1347.cfg new file mode 100644 index 00000000..ee4173ec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1347.cfg @@ -0,0 +1,2 @@ +indent_extern = true +set PROTO_WRAP FAKE_FUNCTION diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1350.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1350.cfg new file mode 100644 index 00000000..082a647f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1350.cfg @@ -0,0 +1 @@ +sp_inside_braces_struct = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1356.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1356.cfg new file mode 100644 index 00000000..948f20b6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1356.cfg @@ -0,0 +1,3 @@ +indent_columns = 2 +indent_continue = 4 +use_indent_continue_only_once = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1358.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1358.cfg new file mode 100644 index 00000000..0d78de45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-1358.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2049.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2049.cfg new file mode 100644 index 00000000..f075ea03 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2049.cfg @@ -0,0 +1,6 @@ +sp_before_ptr_star = remove +sp_after_ptr_star = force +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2650.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2650.cfg new file mode 100644 index 00000000..46279443 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2650.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_paren_close = 2 +indent_off_after_return_new = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2680.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2680.cfg new file mode 100644 index 00000000..99790699 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-2680.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-29935.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-29935.cfg new file mode 100644 index 00000000..23ce45ef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-29935.cfg @@ -0,0 +1,149 @@ +input_tab_size = 4 +string_replace_tab_chars = true +disable_processing_cmt = "*begin-nonstandard-formatting*" +enable_processing_cmt = "*end-nonstandard-formatting*" +utf8_bom = remove +sp_arith = add +sp_assign = add +sp_assign_default = add +sp_enum_assign = add +sp_pp_concat = remove +sp_pp_stringify = remove +sp_bool = add +sp_compare = add +sp_inside_paren = remove +sp_paren_paren = remove +sp_paren_brace = force +sp_after_type = ignore +sp_template_angle = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = add +sp_angle_shift = remove +sp_before_sparen = force +sp_inside_sparen = remove +sp_after_sparen = add +sp_sparen_brace = force +sp_special_semi = force +sp_before_semi_for = remove +sp_before_semi_for_empty = remove +sp_before_byref_func = force +sp_between_semi_for_empty = remove +sp_after_semi_for_empty = remove +sp_before_square = remove +sp_before_squares = remove +sp_inside_square = remove +sp_after_comma = add +sp_before_comma = ignore +sp_after_mdatype_commas = remove +sp_before_mdatype_commas = remove +sp_between_mdatype_commas = remove +sp_paren_comma = remove +sp_after_class_colon = force +sp_before_class_colon = force +sp_after_operator = remove +sp_after_operator_sym = remove +sp_after_operator_sym_empty = remove +sp_after_cast = remove +sp_inside_paren_cast = remove +sp_cpp_cast_paren = remove +sp_sizeof_paren = remove +sp_inside_braces_enum = add +sp_inside_braces_empty = remove +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_fparen_brace = add +sp_func_call_paren = remove +sp_func_call_paren_empty = remove +sp_func_call_user_paren = remove +sp_func_class_paren = remove +sp_return_paren = add +sp_defined_paren = remove +sp_throw_paren = add +sp_catch_paren = add +sp_brace_typedef = add +sp_getset_brace = add +sp_after_dc = remove +sp_after_oc_scope = force +sp_after_oc_colon = remove +sp_before_oc_colon = remove +sp_after_oc_dict_colon = force +sp_before_oc_dict_colon = remove +sp_after_send_oc_colon = force +sp_before_send_oc_colon = remove +sp_after_oc_type = remove +sp_after_oc_return_type = remove +sp_after_oc_at_sel = remove +sp_inside_oc_at_sel_parens = remove +sp_cond_colon = add +sp_cond_question = add +sp_after_new = force +sp_between_new_paren = remove +sp_skip_vbrace_tokens = true +indent_columns = 4 +indent_with_tabs = 0 +indent_cs_delegate_brace = true +indent_namespace = true +indent_class = true +indent_func_call_param = true +indent_func_def_param = true +indent_func_proto_param = true +indent_switch_case = 4 +indent_label = -4 +indent_access_spec = -4 +indent_align_assign = false +indent_align_paren = false +indent_oc_block_msg_xcode_style = true +indent_off_after_return_new = true +indent_single_after_return = true +nl_assign_leave_one_liners = true +nl_class_leave_one_liners = true +nl_enum_leave_one_liners = true +nl_getset_leave_one_liners = true +nl_func_leave_one_liners = true +nl_cpp_lambda_leave_one_liners = true +nl_oc_msg_leave_one_liner = true +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_assign_brace = force +nl_enum_brace = force +nl_struct_brace = force +nl_union_brace = force +nl_if_brace = force +nl_brace_else = force +nl_else_brace = force +nl_else_if = remove +nl_brace_finally = force +nl_finally_brace = force +nl_try_brace = force +nl_getset_brace = force +nl_for_brace = force +nl_catch_brace = force +nl_brace_catch = force +nl_while_brace = force +nl_using_brace = force +nl_do_brace = force +nl_brace_while = force +nl_switch_brace = force +nl_case_colon_brace = force +nl_namespace_brace = force +nl_class_brace = force +nl_fdef_brace = force +nl_max = 3 +nl_after_func_body = 2 +nl_property_brace = force +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_left_shift = false +cmt_convert_tab_to_spaces = true +cmt_indent_multi = false +cmt_multi_check_last = false +mod_remove_extra_semicolon = true +mod_remove_empty_return = true +use_options_overriding_for_qt_macros = false +warn_level_tabs_found_in_verbatim_string_literals = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-30088.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-30088.cfg new file mode 100644 index 00000000..4abe03e1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-30088.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_align_assign = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-32657.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-32657.cfg new file mode 100644 index 00000000..8903de5e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/UNI-32657.cfg @@ -0,0 +1,316 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_member_single=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force + +# workaround for some nasty macroing we're doing +set COMMENT PLATFORM_EXCEPTION_SAFEGUARD_PROLOG + +# without this, uncrustify will parse and process the contents of #defines, which is super unstable. very easy to get into edge cases it does not support, +# so just have it treat #defines as black boxes. this will keep all of the contents of the #define as unprocessed. +pp_ignore_define_body=true + +# macros in #includes aren't known to Uncrustify, so have to inform it here for macros that will confuse it +set MACRO_FUNC ATTRIBUTE_ALIGN + +# we have some truly insane deep namespace nesting in il2cpp. :/ +indent_namespace_single_indent=true + +# needed for fmod apparently (via HEVAGTool.h - the *'s near F_STDCALL will be interpreted as ARITH without this) +set COMMENT F_STDCALL + +# https://github.com/uncrustify/uncrustify/pull/602 +# https://sourceforge.net/p/uncrustify/bugs/633/ +set COMMENT __cdecl +set COMMENT __clrcall +set COMMENT __fastcall +set COMMENT __stdcall +set COMMENT __thiscall +set COMMENT __vectorcall +set COMMENT WINAPI + +# We need to make FAKE_FUNCTION a PROTO_WRAP macro function to help properly tokenize it's parameters. +# Previously parameters with CT_AMP and CT_STAR were tokenized as CT_ARITH. Support for optional parenthesis added in github PR #629. +set PROTO_WRAP FAKE_FUNCTION diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Uncrustify.Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Uncrustify.Cpp.cfg new file mode 100644 index 00000000..89855c3c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/Uncrustify.Cpp.cfg @@ -0,0 +1,3 @@ +input_tab_size = 4 +indent_with_tabs = 0 +pp_ignore_define_body = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/al.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/al.cfg new file mode 100644 index 00000000..669cef45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/al.cfg @@ -0,0 +1,23 @@ +sp_compare = force +sp_before_semi_for = force +sp_inside_fparens = remove +sp_inside_fparen = remove +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_for_brace = add +nl_before_for = add +# to test convert_value +nl_ds_struct_enum_close_brace = t +nl_after_func_proto_group = 3 +nl_after_func_body = 5 +# to test convert_value +align_func_params = 1 +align_assign_span = 1 +align_enum_equ_span = 10 +align_right_cmt_span = 3 +align_func_proto_span = 3 +cmt_cpp_to_c = true +mod_full_brace_for = add +mod_add_long_function_closebrace_comment = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align-330.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align-330.cfg new file mode 100644 index 00000000..5cae649c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align-330.cfg @@ -0,0 +1,8 @@ +sp_after_comma = force +indent_columns = 3 +pp_multiline_define_body_indent = 3 +nl_class_colon = force +align_nl_cont = 1 +align_pp_define_gap = 4 +align_pp_define_span = 3 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-0.cfg new file mode 100644 index 00000000..fee6fea1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-0.cfg @@ -0,0 +1,2 @@ +align_assign_span = 3 +align_assign_decl_func = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-1.cfg new file mode 100644 index 00000000..2175c1e2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-1.cfg @@ -0,0 +1,2 @@ +align_assign_span = 3 +align_assign_decl_func = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-2.cfg new file mode 100644 index 00000000..9e3a2779 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_decl_func-2.cfg @@ -0,0 +1,2 @@ +align_assign_span = 3 +align_assign_decl_func = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_func_proto_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_func_proto_1.cfg new file mode 100644 index 00000000..378039a7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_func_proto_1.cfg @@ -0,0 +1,2 @@ +align_assign_span = 1
+
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_span-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_span-1.cfg new file mode 100644 index 00000000..fda177f9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_assign_span-1.cfg @@ -0,0 +1 @@ +align_assign_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_asterisk_after_type_cast.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_asterisk_after_type_cast.cfg new file mode 100644 index 00000000..4a781152 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_asterisk_after_type_cast.cfg @@ -0,0 +1,9 @@ +indent_columns = 4 +output_tab_size = 4 +indent_with_tabs = 0 + +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove + +sp_after_sparen = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_class-constr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_class-constr.cfg new file mode 100644 index 00000000..8824d97a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_class-constr.cfg @@ -0,0 +1,18 @@ +indent_columns = 4 +indent_with_tabs = 0 + +nl_constr_init_args = force + +nl_constr_colon = force + +pos_constr_comma = lead_force + +pos_constr_colon=lead + +align_constr_value_span = 2 + +align_constr_value_gap = 2 + +indent_class = true + +nl_fdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_continuation_left_shift.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_continuation_left_shift.cfg new file mode 100644 index 00000000..767f2adc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_continuation_left_shift.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +output_tab_size = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_default_after_override.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_default_after_override.cfg new file mode 100644 index 00000000..7373e8d1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_default_after_override.cfg @@ -0,0 +1 @@ +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_eigen_comma_init.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_eigen_comma_init.cfg new file mode 100644 index 00000000..a798cc5f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_eigen_comma_init.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +align_eigen_comma_init = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall-2.cfg new file mode 100644 index 00000000..795a16e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall-2.cfg @@ -0,0 +1,3 @@ +sp_after_comma = force +align_number_right = true +align_same_func_call_params = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall.cfg new file mode 100644 index 00000000..2df9b2e0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_fcall.cfg @@ -0,0 +1,2 @@ +sp_after_comma = force +align_same_func_call_params = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params-t.cfg new file mode 100644 index 00000000..6072ca53 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params-t.cfg @@ -0,0 +1 @@ +align_func_params = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_gap.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_gap.cfg new file mode 100644 index 00000000..314c2e1b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_gap.cfg @@ -0,0 +1,2 @@ +align_func_params_span = 1 +align_func_params_gap = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_span-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_span-1.cfg new file mode 100644 index 00000000..5695e5a4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_span-1.cfg @@ -0,0 +1 @@ +align_func_params_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_1.cfg new file mode 100644 index 00000000..acae1cc7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_1.cfg @@ -0,0 +1,2 @@ +align_func_params_span = 1 +align_func_params_thresh = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_2.cfg new file mode 100644 index 00000000..355705f1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_2.cfg @@ -0,0 +1,2 @@ +align_func_params_span = 1 +align_func_params_thresh = 8
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_3.cfg new file mode 100644 index 00000000..48912fce --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_3.cfg @@ -0,0 +1,2 @@ +align_func_params_span = 2 +align_func_params_thresh = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_4.cfg new file mode 100644 index 00000000..284a5ee8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_params_thresh_4.cfg @@ -0,0 +1,2 @@ +align_func_params_span = 2 +align_func_params_thresh = 8
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_1.cfg new file mode 100644 index 00000000..b6a93b5b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_1.cfg @@ -0,0 +1,2 @@ +align_func_proto_span = 4 +align_func_proto_thresh = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_2.cfg new file mode 100644 index 00000000..363ea06c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_2.cfg @@ -0,0 +1,2 @@ +align_func_proto_span = 4 +align_func_proto_thresh = 15
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_3.cfg new file mode 100644 index 00000000..3a5ac106 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_3.cfg @@ -0,0 +1,2 @@ +align_func_proto_span = 2 +align_func_proto_thresh = 5
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_4.cfg new file mode 100644 index 00000000..6b084d86 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_4.cfg @@ -0,0 +1,3 @@ +align_func_proto_span = 2 +align_func_proto_thresh = 15 +align_assign_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_5.cfg new file mode 100644 index 00000000..8a8dff6b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_func_proto_thresh_5.cfg @@ -0,0 +1,3 @@ +align_func_proto_span = 2 +align_func_proto_thresh = -15 +align_assign_span = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_right_comment.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_right_comment.cfg new file mode 100644 index 00000000..1551b394 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_right_comment.cfg @@ -0,0 +1 @@ +align_right_cmt_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_class_span-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_class_span-1.cfg new file mode 100644 index 00000000..a1b4122c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_class_span-1.cfg @@ -0,0 +1 @@ +align_var_class_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_1.cfg new file mode 100644 index 00000000..5cadc402 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_1.cfg @@ -0,0 +1,2 @@ +align_var_def_span = 1 +align_var_def_thresh = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_2.cfg new file mode 100644 index 00000000..bb9be8ad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_2.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 1 +align_var_def_amp_style = 1 +align_var_def_thresh = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_3.cfg new file mode 100644 index 00000000..edb77f43 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/align_var_def_thresh_3.cfg @@ -0,0 +1,4 @@ +align_var_def_span = 1 +align_var_def_star_style = 2 +align_var_def_amp_style = 2 +align_var_def_thresh = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/anonymous_enum.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/anonymous_enum.cfg new file mode 100644 index 00000000..503a2cb5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/anonymous_enum.cfg @@ -0,0 +1,6 @@ +sp_enum_assign = add
+sp_enum_colon = add
+sp_type_brace_init_lst = remove
+indent_columns = 2
+indent_with_tabs = 0
+indent_paren_close = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-byref.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-byref.cfg new file mode 100644 index 00000000..006060ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-byref.cfg @@ -0,0 +1,6 @@ +sp_arith = force +sp_before_byref = remove +sp_after_byref = remove + +# Similar to the issues tested by arith-vs-ptr this test is checks +# if the '&' opertor is properly recognized as 'arith' and not 'byref' in some contexts diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-ptr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-ptr.cfg new file mode 100644 index 00000000..60c8d23c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/arith-vs-ptr.cfg @@ -0,0 +1,14 @@ +sp_arith = force +sp_after_ptr_star = remove + +# issue 1464 +# ------------------------------------------------------------------------------ +# auto p = std::make_pair(r * cos(a), r * sin(a)); +# type of the 'cos' token was incorrectly set to `CT_FUNC_DEF` +# because of this the first '*' became a `CT_PTR_TYPE` instead of a `CT_ARITH` +# type + +# issue 1466 +# ------------------------------------------------------------------------------ +# A a = {this->r * cos(b)}; +# similar to 1464 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/asm_block_pp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/asm_block_pp.cfg new file mode 100644 index 00000000..dd9eb164 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/asm_block_pp.cfg @@ -0,0 +1,2 @@ +indent_columns = 8 +indent_ignore_asm_block = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon.cfg new file mode 100644 index 00000000..45accdc7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon.cfg @@ -0,0 +1,15 @@ +sp_sparen_brace = add +sp_before_byref = remove +sp_before_byref_func = remove +sp_before_square = force +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_before_vardef_square = force +indent_columns = 2 +nl_start_of_file = remove +nl_struct_brace = remove +nl_fdef_brace = force +nl_after_func_body = 2 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon2.cfg new file mode 100644 index 00000000..aa0644cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon2.cfg @@ -0,0 +1,13 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_between_ptr_ref = remove +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_before_square = force +indent_columns = 2 +nl_if_brace = remove +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon3.cfg new file mode 100644 index 00000000..30f50cb7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon3.cfg @@ -0,0 +1,4 @@ +indent_columns = 2 +indent_class = true +nl_end_of_file = force +nl_end_of_file_min = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon4.cfg new file mode 100644 index 00000000..ab173208 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/avalon4.cfg @@ -0,0 +1,14 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_after_ptr_star = force +sp_before_angle = remove +sp_inside_angle = remove +sp_after_comma = force +sp_before_dc = remove +sp_after_ptr_star_qualifier = remove +indent_columns = 2 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_if_brace = remove +nl_func_decl_args = remove +mod_full_brace_if = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_001.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_001.cfg new file mode 100644 index 00000000..e1bce1fa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_001.cfg @@ -0,0 +1,2 @@ +sp_after_comma = force +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_003.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_003.cfg new file mode 100644 index 00000000..b6dffc7c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_003.cfg @@ -0,0 +1,6 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_inside_fparen = remove +indent_columns = 3 +align_func_params = true +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_004.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_004.cfg new file mode 100644 index 00000000..fa3c13c3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_004.cfg @@ -0,0 +1,5 @@ +sp_after_ptr_star = remove +indent_columns = 3 +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_005.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_005.cfg new file mode 100644 index 00000000..6784d5f8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_005.cfg @@ -0,0 +1,13 @@ +sp_assign_default = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_inside_fparen = remove +sp_return_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +indent_access_spec = 2 +nl_class_leave_one_liners = true +align_func_params = true +align_var_def_star_style = 1 +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_006.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_006.cfg new file mode 100644 index 00000000..2767d063 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_006.cfg @@ -0,0 +1,9 @@ +sp_after_ptr_star = remove +sp_inside_fparen = remove +sp_brace_typedef = force +indent_columns = 3 +indent_member = 3 +align_enum_equ_span = 4 +align_struct_init_span = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_008.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_008.cfg new file mode 100644 index 00000000..ac567894 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_008.cfg @@ -0,0 +1,11 @@ +sp_after_ptr_star = remove +sp_before_sparen = force +sp_inside_sparen = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_try_brace = add +nl_catch_brace = add +mod_full_brace_if = add +pp_indent = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_009.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_009.cfg new file mode 100644 index 00000000..314bb848 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_009.cfg @@ -0,0 +1,8 @@ +sp_arith = force +sp_assign = force +sp_after_ptr_star = remove +indent_columns = 3 +indent_class = true +indent_access_spec = 2 +align_var_def_star_style = 1 +align_var_class_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_010.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_010.cfg new file mode 100644 index 00000000..c4536db3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_010.cfg @@ -0,0 +1,2 @@ +sp_before_byref = remove +align_func_params = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_012.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_012.cfg new file mode 100644 index 00000000..73c218c5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_012.cfg @@ -0,0 +1,14 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +sp_before_byref_func = remove +sp_inside_angle = remove +sp_after_angle = force +sp_angle_word = force +indent_columns = 3 +indent_class = true +indent_access_spec = 2 +nl_var_def_blk_end_func_top = 1 +nl_fdef_brace = add +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_013.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_013.cfg new file mode 100644 index 00000000..be76962d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_013.cfg @@ -0,0 +1,6 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +indent_columns = 3 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_var_def_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_014.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_014.cfg new file mode 100644 index 00000000..95250f61 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_014.cfg @@ -0,0 +1,43 @@ +tok_split_gte = true +sp_arith = force +sp_assign = force +sp_assign_default = remove +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_func_var = remove +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_inside_angle_empty = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_inside_square = remove +sp_after_comma = force +sp_func_proto_paren = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_cparen_oparen = remove +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +indent_class = true +indent_access_spec = 2 +nl_var_def_blk_end_func_top = 1 +nl_struct_brace = add +nl_fdef_brace = add +nl_after_brace_open = true +nl_after_access_spec = 1 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_var_def_span = 2 +align_assign_span = 1 +align_var_class_span = 2 +align_typedef_gap = 3 +align_typedef_span = 5 +align_right_cmt_span = 3 +align_pp_define_gap = 4 +align_pp_define_span = 3 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_015.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_015.cfg new file mode 100644 index 00000000..0e139678 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_015.cfg @@ -0,0 +1,5 @@ +indent_columns = 3 +align_struct_init_span = 3 + +# not needed but without this option, 30029 is unstable! +sp_after_comma = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_016.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_016.cfg new file mode 100644 index 00000000..9b863f1d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_016.cfg @@ -0,0 +1,3 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_inside_fparen = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_017.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_017.cfg new file mode 100644 index 00000000..a4acecc3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_017.cfg @@ -0,0 +1,6 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_inside_fparen = remove +indent_columns = 3 +align_var_def_span = 2 +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_018.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_018.cfg new file mode 100644 index 00000000..c8dd1ab6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_018.cfg @@ -0,0 +1,5 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove +indent_columns = 3 +align_var_struct_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_020.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_020.cfg new file mode 100644 index 00000000..8cd270ef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_020.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +nl_enum_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_021.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_021.cfg new file mode 100644 index 00000000..e8024afb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_021.cfg @@ -0,0 +1,13 @@ +sp_arith = force +sp_assign = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force +sp_cpp_lambda_paren_brace = force +indent_columns = 3 +indent_with_tabs = 0 +nl_after_semicolon = true +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_022.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_022.cfg new file mode 100644 index 00000000..e258b9a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_022.cfg @@ -0,0 +1,13 @@ +sp_inside_paren = remove +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +indent_columns = 3 +indent_class = true +nl_fdef_brace = add +align_var_def_span = 2 +align_var_def_star_style = 1 +mod_paren_on_return = add +sp_after_ptr_star_trailing = remove +sp_before_ptr_star_trailing = force +sp_after_ptr_star_qualifier = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_023.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_023.cfg new file mode 100644 index 00000000..acb9b682 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_023.cfg @@ -0,0 +1,11 @@ +sp_inside_paren = remove +sp_before_ptr_star = force +sp_func_def_paren = remove +sp_return_paren = remove +indent_columns = 3 +nl_struct_brace = add +nl_if_brace = add +nl_else_brace = add +nl_fdef_brace = add +mod_full_brace_if = add +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_024.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_024.cfg new file mode 100644 index 00000000..37954be0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_024.cfg @@ -0,0 +1,2 @@ +sp_before_ptr_star = force +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_026.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_026.cfg new file mode 100644 index 00000000..f7008ee3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_026.cfg @@ -0,0 +1,4 @@ +sp_arith = force +sp_after_ptr_star = remove +align_func_params = true +align_var_def_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_027.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_027.cfg new file mode 100644 index 00000000..fbbdb06a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_027.cfg @@ -0,0 +1,6 @@ +output_tab_size = 3 +indent_columns = 3 +indent_with_tabs = 0 +nl_class_leave_one_liners = true +nl_struct_brace = add +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_028.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_028.cfg new file mode 100644 index 00000000..62848095 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_028.cfg @@ -0,0 +1,2 @@ +sp_before_ellipsis = remove +indent_columns = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_029.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_029.cfg new file mode 100644 index 00000000..a0c2e18c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_029.cfg @@ -0,0 +1,10 @@ +sp_assign_default = remove +sp_inside_paren = remove +indent_columns = 3 +nl_enum_brace = add +align_func_params = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_enum_equ_span = 4 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_030.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_030.cfg new file mode 100644 index 00000000..8663afd4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_030.cfg @@ -0,0 +1,6 @@ +sp_arith = force +sp_before_ptr_star = force +sp_before_angle = remove +sp_inside_angle = remove +indent_columns = 3 +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_031.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_031.cfg new file mode 100644 index 00000000..97dc5912 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ben_031.cfg @@ -0,0 +1,6 @@ +sp_after_bit_colon = force +sp_before_bit_colon = force +indent_columns = 3 +indent_class = true +indent_label = 2 +indent_access_spec = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1001.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1001.cfg new file mode 100644 index 00000000..d8255ca7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1001.cfg @@ -0,0 +1,2 @@ +#Add or remove space between '<>' and ':' +sp_angle_colon = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1003.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1003.cfg new file mode 100644 index 00000000..242b3a13 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1003.cfg @@ -0,0 +1,4 @@ +output_tab_size = 4 +indent_columns = 4 +indent_access_spec_body = true +indent_paren_close = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1004.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1004.cfg new file mode 100644 index 00000000..f479bada --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1004.cfg @@ -0,0 +1,4 @@ +output_tab_size = 4 +sp_arith = force +indent_columns = 4 +align_var_def_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1020.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1020.cfg new file mode 100644 index 00000000..51643e87 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1020.cfg @@ -0,0 +1,2 @@ +code_width = 190 +ls_func_split_full = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1108.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1108.cfg new file mode 100644 index 00000000..741ba79d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1108.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_braces = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1160.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1160.cfg new file mode 100644 index 00000000..afc7030d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1160.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_continue = 4 +indent_class = true +use_indent_continue_only_once = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1161.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1161.cfg new file mode 100644 index 00000000..c7977cf0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1161.cfg @@ -0,0 +1,2 @@ +indent_class = true +indent_access_spec_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1169.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1169.cfg new file mode 100644 index 00000000..0615b330 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1169.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_continue = 6 +indent_access_spec_body = true +code_width = 50
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1170.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1170.cfg new file mode 100644 index 00000000..9171180b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1170.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_continue = 6 +indent_class = true +code_width = 140
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1236.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1236.cfg new file mode 100644 index 00000000..0c60d5be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1236.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_ignore_asm_block = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-F.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-F.cfg new file mode 100644 index 00000000..613f85d5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-F.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +indent_cpp_lambda_only_once = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-T.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-T.cfg new file mode 100644 index 00000000..82a970ff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1296-T.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +indent_cpp_lambda_only_once = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1315.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1315.cfg new file mode 100644 index 00000000..49a716d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1315.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +sp_enum_before_assign = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1324.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1324.cfg new file mode 100644 index 00000000..289ca9d5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1324.cfg @@ -0,0 +1,3 @@ +sp_after_semi_for = remove +sp_after_semi_for_empty = force +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1340.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1340.cfg new file mode 100644 index 00000000..6ec6568e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1340.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_cpp_lambda_body = true +align_assign_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1349.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1349.cfg new file mode 100644 index 00000000..56328317 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1349.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +code_width = 115 +align_struct_init_span = 5 +nl_type_brace_init_lst = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1395.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1395.cfg new file mode 100644 index 00000000..c2bed595 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1395.cfg @@ -0,0 +1,2 @@ +align_same_func_call_params = true +nl_cpp_lambda_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1402.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1402.cfg new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1402.cfg diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1403.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1403.cfg new file mode 100644 index 00000000..8e10acd4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1403.cfg @@ -0,0 +1 @@ +sp_arith = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1432.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1432.cfg new file mode 100644 index 00000000..4ae27492 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1432.cfg @@ -0,0 +1,2 @@ +nl_after_func_proto = 0 +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1439.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1439.cfg new file mode 100644 index 00000000..f625249d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1439.cfg @@ -0,0 +1 @@ +nl_after_struct = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1452.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1452.cfg new file mode 100755 index 00000000..dbd0e9b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1452.cfg @@ -0,0 +1,3 @@ +nl_class_leave_one_liners = true +nl_func_type_name = force +align_var_struct_span = 99 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1649.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1649.cfg new file mode 100644 index 00000000..472975ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1649.cfg @@ -0,0 +1 @@ +sp_after_noexcept = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1689.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1689.cfg new file mode 100644 index 00000000..7c1462f1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1689.cfg @@ -0,0 +1,2 @@ +sp_before_unnamed_byref = remove +sp_before_byref = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1691.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1691.cfg new file mode 100644 index 00000000..03600f80 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1691.cfg @@ -0,0 +1,2 @@ +align_var_def_span = 1 +align_var_def_thresh = 30 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1717.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1717.cfg new file mode 100644 index 00000000..a6c7322f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1717.cfg @@ -0,0 +1 @@ +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1758-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1758-f.cfg new file mode 100644 index 00000000..90d17ebd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1758-f.cfg @@ -0,0 +1 @@ +mod_full_brace_for = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1854.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1854.cfg new file mode 100644 index 00000000..ebc5c5e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1854.cfg @@ -0,0 +1 @@ +sp_before_semi = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1862.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1862.cfg new file mode 100644 index 00000000..c23b9027 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_1862.cfg @@ -0,0 +1,2 @@ +# Controls the spaces between #else or #endif and a trailing comment. +sp_endif_cmt=remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2285.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2285.cfg new file mode 100644 index 00000000..fa3b437b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2285.cfg @@ -0,0 +1,7 @@ +indent_with_tabs = 0 +indent_columns = 4 +indent_continue = 4 +nl_constr_colon = force +nl_constr_init_args = force +pos_constr_colon = trail_force +pos_constr_comma = trail_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2322.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2322.cfg new file mode 100644 index 00000000..a16bec3d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2322.cfg @@ -0,0 +1,11 @@ +indent_columns = 4 +output_tab_size = 4 +indent_with_tabs = 0 +sp_while_paren_open = force +mod_full_brace_if_chain = 1 + +mod_full_brace_for = remove +mod_full_brace_if = remove +mod_full_brace_do = remove +mod_full_brace_while = remove +mod_full_brace_using = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2371.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2371.cfg new file mode 100644 index 00000000..1f207beb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2371.cfg @@ -0,0 +1,2 @@ +indent_class = true +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2402.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2402.cfg new file mode 100644 index 00000000..85c3a458 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2402.cfg @@ -0,0 +1,2 @@ +nl_assign_leave_one_liners = true +nl_after_brace_open = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_1.cfg new file mode 100644 index 00000000..17fd04a4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_1.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_class = true +nl_before_class = 2 +nl_after_class = 2 +nl_before_namespace = 2 +nl_after_namespace = 2 +mod_remove_extra_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_2.cfg new file mode 100644 index 00000000..89f0b916 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_2433_2.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_class = true +nl_before_class = 2 +nl_after_class = 2 +nl_before_namespace = 2 +nl_inside_namespace = 2 +nl_after_namespace = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_472.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_472.cfg new file mode 100644 index 00000000..68d6f99b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_472.cfg @@ -0,0 +1,2 @@ +nl_func_proto_type_name = remove +type dbgTrace
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_488.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_488.cfg new file mode 100644 index 00000000..0319ef54 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_488.cfg @@ -0,0 +1,2 @@ +indent_continue = -4 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_633.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_633.cfg new file mode 100644 index 00000000..61833884 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_633.cfg @@ -0,0 +1,3 @@ +# bug 633 +indent_columns = 4 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_657.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_657.cfg new file mode 100644 index 00000000..109e3750 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_657.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +indent_class_colon = true +nl_class_init_args = force +pos_class_comma = lead
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_664.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_664.cfg new file mode 100644 index 00000000..3799bd89 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_664.cfg @@ -0,0 +1,4 @@ +sp_inside_square = add +sp_inside_square_empty = add +indent_columns = 4 +nl_max = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_670.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_670.cfg new file mode 100644 index 00000000..fe57c0af --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_670.cfg @@ -0,0 +1,13 @@ +sp_inside_fparen = force +sp_cmt_cpp_start = force +indent_columns = 4 +indent_continue = 8 +indent_func_def_param = true +indent_func_proto_param = true +nl_func_type_name = force +nl_func_proto_type_name = force +nl_func_decl_start = force +nl_func_def_start = force +nl_func_decl_args = force +nl_func_def_args = force +align_func_params = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-f.cfg new file mode 100644 index 00000000..1f03334a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-f.cfg @@ -0,0 +1,5 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_enum_brace = force +sp_enum_assign = force +mod_enum_last_comma = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-r.cfg new file mode 100644 index 00000000..82e3cb22 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_858-r.cfg @@ -0,0 +1,5 @@ +indent_columns = 3 +indent_with_tabs = 0 +nl_enum_brace = force +sp_enum_assign = force +mod_enum_last_comma = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_322.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_322.cfg new file mode 100644 index 00000000..e49770be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_322.cfg @@ -0,0 +1,3 @@ +output_tab_size = 4 +indent_columns = 4 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_359.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_359.cfg new file mode 100644 index 00000000..ab9c63fb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_359.cfg @@ -0,0 +1,3 @@ +sp_case_label = force +indent_columns = 4 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_405.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_405.cfg new file mode 100644 index 00000000..0bdfce99 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_405.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_paren_close = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-create.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-create.cfg new file mode 100644 index 00000000..936b04a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-create.cfg @@ -0,0 +1,4 @@ +sp_after_sparen = add +nl_create_if_one_liner = true +nl_create_for_one_liner = true +nl_create_while_one_liner = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-split.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-split.cfg new file mode 100644 index 00000000..9e272905 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_409-split.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +nl_split_if_one_liner = true +nl_split_for_one_liner = true +nl_split_while_one_liner = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_478.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_478.cfg new file mode 100644 index 00000000..18db9a6d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_478.cfg @@ -0,0 +1,3 @@ +indent_continue = 5 +indent_with_tabs = 0 +use_indent_continue_only_once = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_663.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_663.cfg new file mode 100644 index 00000000..9d780855 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_663.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_switch_case = 4 +indent_case_brace = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_666.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_666.cfg new file mode 100644 index 00000000..6acabd49 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_666.cfg @@ -0,0 +1,2 @@ +indent_else_if = true +nl_after_brace_close = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_752.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_752.cfg new file mode 100644 index 00000000..93191dc0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/bug_i_752.cfg @@ -0,0 +1,5 @@ +sp_before_tr_cmt = force +sp_num_before_tr_cmt = 4 +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-center.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-center.cfg new file mode 100644 index 00000000..5d370736 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-center.cfg @@ -0,0 +1,7 @@ +# Places the byref as follows: "int & foo" +sp_after_byref_func = force +sp_before_byref_func = force +sp_after_byref = force +sp_before_byref = force +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-f.cfg new file mode 100644 index 00000000..a50d0c1a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-f.cfg @@ -0,0 +1,6 @@ +sp_before_byref_func = force +sp_after_byref_func = force +sp_before_byref = force +sp_after_byref = force +sp_before_unnamed_byref = force +sp_addr = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-i.cfg new file mode 100644 index 00000000..9d15782c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-i.cfg @@ -0,0 +1,7 @@ +sp_before_byref_func = ignore +sp_after_byref_func = ignore +sp_before_byref = ignore +sp_after_byref = ignore +sp_before_unnamed_byref = ignore +sp_type_func = ignore +sp_addr = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-ir.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-ir.cfg new file mode 100644 index 00000000..df89f6e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-ir.cfg @@ -0,0 +1,7 @@ +sp_before_byref_func = ignore +sp_after_byref_func = ignore +sp_before_byref = ignore +sp_after_byref = remove +sp_before_unnamed_byref = ignore +sp_type_func = ignore +sp_addr = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-left.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-left.cfg new file mode 100644 index 00000000..d28c4e5e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-left.cfg @@ -0,0 +1,9 @@ +# Places the byref as follows: "int &foo" +sp_before_byref = force +sp_before_byref_func = force +sp_after_byref = remove +indent_columns = 3 +indent_class = true + +# Add or remove space after a reference sign '&', if followed by a func proto/def. +sp_after_byref_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-r.cfg new file mode 100644 index 00000000..505f9dc0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-r.cfg @@ -0,0 +1,7 @@ +sp_before_byref_func = remove +sp_after_byref_func = remove +sp_before_byref = remove +sp_after_byref = remove +sp_before_unnamed_byref = remove +sp_type_func = remove +sp_addr = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-right.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-right.cfg new file mode 100644 index 00000000..82fb7287 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/byref-right.cfg @@ -0,0 +1,5 @@ +# Places the byref as follows: "int& foo" +sp_before_byref = remove +sp_before_byref_func = remove +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cast.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cast.cfg new file mode 100644 index 00000000..feac5350 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cast.cfg @@ -0,0 +1,3 @@ +sp_after_cast = force +sp_inside_paren_cast = force +sp_cpp_cast_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol-add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol-add.cfg new file mode 100644 index 00000000..64c29340 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol-add.cfg @@ -0,0 +1,12 @@ +# moves class colon ops to the end of line +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +nl_class_init_args = add +nl_constr_init_args = add +nl_class_colon = add +nl_constr_colon = add +pos_class_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol.cfg new file mode 100644 index 00000000..cf80d3f9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-eol.cfg @@ -0,0 +1,8 @@ +# moves class colon ops to the end of line +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +indent_class_colon = true +indent_constr_colon = true +pos_constr_colon = trail +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol-add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol-add.cfg new file mode 100644 index 00000000..dc967004 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol-add.cfg @@ -0,0 +1,19 @@ +# moves class colon ops to the end of line +sp_paren_paren = force +sp_inside_fparen = force +sp_before_dc = remove +sp_after_dc = remove +sp_before_nl_cont = force +indent_columns = 3 +pp_multiline_define_body_indent = 3 +indent_class_colon = true +indent_constr_colon = true +nl_class_init_args = add +nl_constr_init_args = add +nl_class_colon = add +nl_constr_colon = add +pos_class_comma = trail +pos_constr_comma = trail +pos_class_colon = lead +pos_constr_colon = lead +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol.cfg new file mode 100644 index 00000000..bae3b53b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-colon-pos-sol.cfg @@ -0,0 +1,8 @@ +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +indent_class_colon = true +indent_constr_colon = true +pos_class_colon = lead +pos_constr_colon = lead +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add.cfg new file mode 100644 index 00000000..d60ffa9b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add.cfg @@ -0,0 +1,12 @@ +# moves class colon ops to the end of line +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +nl_class_init_args = add +nl_constr_init_args = add +nl_fdef_brace = force +nl_class_colon = add +nl_constr_colon = add +pos_class_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add2.cfg new file mode 100644 index 00000000..148e33a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-add2.cfg @@ -0,0 +1,18 @@ +# moves class colon ops to the end of line +sp_before_byref = remove +sp_after_comma = force +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +indent_class = true +indent_access_spec = 2 +nl_class_init_args = add +nl_constr_init_args = remove +nl_fdef_brace = force +nl_class_colon = add +nl_constr_colon = remove +eat_blanks_after_open_brace = true +pos_class_comma = trail +align_nl_cont = 1 +align_pp_define_gap = 4 +align_pp_define_span = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-del.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-del.cfg new file mode 100644 index 00000000..b90f2f75 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-nl_func-del.cfg @@ -0,0 +1,13 @@ +# moves class colon ops to the end of line +sp_fparen_brace = force +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +nl_class_init_args = add +nl_constr_init_args = add +nl_fdef_brace = remove +nl_class_colon = add +nl_constr_colon = add +pos_class_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-on-colon-indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-on-colon-indent.cfg new file mode 100644 index 00000000..e21fbc7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/class-on-colon-indent.cfg @@ -0,0 +1,17 @@ +# moves class colon ops to the end of line +sp_paren_paren = force +sp_after_comma = force +sp_inside_fparen = force +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 3 +indent_class_colon = true +indent_class_on_colon = true +nl_class_init_args = add +nl_constr_init_args = add +nl_class_colon = remove +nl_constr_colon = add +pos_class_comma = lead +pos_constr_comma = lead +pos_constr_colon = lead_force +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_convert_tab_to_spaces-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_convert_tab_to_spaces-t.cfg new file mode 100644 index 00000000..98b3bcf3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_convert_tab_to_spaces-t.cfg @@ -0,0 +1 @@ +cmt_convert_tab_to_spaces = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_cpp_to_c-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_cpp_to_c-t.cfg new file mode 100644 index 00000000..85c3fec8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_cpp_to_c-t.cfg @@ -0,0 +1 @@ +cmt_cpp_to_c = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-1.cfg new file mode 100644 index 00000000..8d0a8a16 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-1.cfg @@ -0,0 +1,4 @@ +indent_columns = 2 +indent_namespace = true +indent_class = true +nl_collapse_empty_body = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-2.cfg new file mode 100644 index 00000000..fd9b9d25 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-2.cfg @@ -0,0 +1,6 @@ +indent_columns = 2 +indent_namespace = true +indent_class = true +nl_collapse_empty_body = true +# to test convert_value +cmt_indent_multi = f diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-3.cfg new file mode 100644 index 00000000..c8e6ce41 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_indent-3.cfg @@ -0,0 +1,5 @@ +indent_columns = 2 +indent_namespace = true +indent_class = true +nl_collapse_empty_body = true +cmt_star_cont = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_multi_first_len_minimum-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_multi_first_len_minimum-1.cfg new file mode 100644 index 00000000..e7d99a98 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_multi_first_len_minimum-1.cfg @@ -0,0 +1 @@ +cmt_multi_first_len_minimum = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_trailing_single_line_c_to_cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_trailing_single_line_c_to_cpp.cfg new file mode 100644 index 00000000..0754b419 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cmt_trailing_single_line_c_to_cpp.cfg @@ -0,0 +1 @@ +cmt_trailing_single_line_c_to_cpp = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/code_width-70.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/code_width-70.cfg new file mode 100644 index 00000000..07c25e5c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/code_width-70.cfg @@ -0,0 +1 @@ +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-f.cfg new file mode 100644 index 00000000..29eb50b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-f.cfg @@ -0,0 +1,3 @@ +sp_paren_comma = force +sp_after_comma = force +sp_before_comma = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-i.cfg new file mode 100644 index 00000000..2dad1026 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-i.cfg @@ -0,0 +1,3 @@ +sp_paren_comma = ignore +sp_after_comma = ignore +sp_before_comma = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-r.cfg new file mode 100644 index 00000000..5194e6da --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/comma-r.cfg @@ -0,0 +1,3 @@ +sp_paren_comma = remove +sp_after_comma = remove +sp_before_comma = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/const_throw.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/const_throw.cfg new file mode 100644 index 00000000..41b3ecef --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/const_throw.cfg @@ -0,0 +1,5 @@ +#indent class member function declarations. This is to test +#that a 'const' qualifier is continuation indented +indent_class = true +indent_func_const = 69 +indent_func_throw = 41 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/constr_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/constr_colon.cfg new file mode 100644 index 00000000..3397573a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/constr_colon.cfg @@ -0,0 +1,9 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true + +nl_constr_init_args = force +nl_constr_colon = force +pos_constr_comma = lead_force +pos_class_colon = lead_force +pos_constr_colon = lead_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cpp17.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cpp17.cfg new file mode 100644 index 00000000..1865e0c8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cpp17.cfg @@ -0,0 +1 @@ +sp_cpp_before_struct_binding = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cu.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cu.cfg new file mode 100644 index 00000000..40dff3e5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/cu.cfg @@ -0,0 +1,11 @@ +# minuses: +# do not place NL after if () +# bad split if(long-condition) to multiple lines +sp_assign = add +sp_compare = add +sp_before_sparen = add +indent_columns = 2 +indent_with_tabs = 0 +nl_func_type_name = add +code_width = 78 +ls_for_split_full = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open.cfg new file mode 100644 index 00000000..5b4539e2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open.cfg @@ -0,0 +1,8 @@ +output_tab_size = 4 +indent_columns = 4 +macro-open MACRO2_BEGIN_STUFF +macro-else MACRO2_ELSE_STUFF +macro-close MACRO2_END_STUFF +macro-open MACRO_BEGIN_STUFF +macro-else MACRO_ELSE_STUFF +macro-close MACRO_END_STUFF
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open2.cfg new file mode 100644 index 00000000..38e507b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/custom-open2.cfg @@ -0,0 +1,10 @@ +indent_columns = 4 +indent_with_tabs = 0 +# Set to something differently initially, to test reassigning a custom keyword's type +set word MACRO2_BEGIN_STUFF +macro-open MACRO2_BEGIN_STUFF +macro-else MACRO2_ELSE_STUFF +macro-close MACRO2_END_STUFF +macro-open MACRO_BEGIN_STUFF +macro-else MACRO_ELSE_STUFF +macro-close MACRO_END_STUFF diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/disable_nl_cont.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/disable_nl_cont.cfg new file mode 100644 index 00000000..f80605fd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/disable_nl_cont.cfg @@ -0,0 +1,6 @@ +disable_processing_nl_cont = true +sp_compare = force +sp_assign = force +sp_arith = force +indent_class = true +sp_before_nl_cont = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-detab-strings.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-detab-strings.cfg new file mode 100644 index 00000000..9e36729d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-detab-strings.cfg @@ -0,0 +1 @@ +string_replace_tab_chars = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-process-defines.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-process-defines.cfg new file mode 100644 index 00000000..051f834f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/dont-process-defines.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +pp_multiline_define_body_indent = 4 +set = WORD define diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/eat_blanks_after_codewidth.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/eat_blanks_after_codewidth.cfg new file mode 100644 index 00000000..1b24a7ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/eat_blanks_after_codewidth.cfg @@ -0,0 +1,11 @@ +cmt_width=30 +code_width=30 +eat_blanks_after_open_brace=true +nl_inside_empty_func=2 +nl_fdef_brace=force +indent_columns=4 +indent_class=true +indent_with_tabs=0 +input_tab_size=4 +nl_func_type_name=force +nl_before_func_body_def=2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ellipsis-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ellipsis-i.cfg new file mode 100644 index 00000000..3b4d8ec6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ellipsis-i.cfg @@ -0,0 +1,2 @@ +sp_after_ellipsis = ignore +sp_before_ellipsis = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum.cfg new file mode 100644 index 00000000..b39c0840 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum.cfg @@ -0,0 +1,12 @@ +sp_enum_assign = force +sp_enum_colon = force +indent_columns = 3 +nl_enum_brace = force +nl_enum_class = remove +nl_enum_class_identifier = remove +nl_enum_identifier_colon = remove +nl_enum_colon_type = remove +nl_max = 3 +pos_enum_comma = trail_force +align_enum_equ_span = 4 +align_right_cmt_span = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-3.cfg new file mode 100644 index 00000000..7fe548e2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-3.cfg @@ -0,0 +1,2 @@ +pos_comma = lead_break +pos_enum_comma = trail_break
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-4.cfg new file mode 100644 index 00000000..d42e6b1e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-4.cfg @@ -0,0 +1,2 @@ +pos_comma = trail_force +pos_enum_comma = lead
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-6.cfg new file mode 100644 index 00000000..6d4279ec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comma-6.cfg @@ -0,0 +1,3 @@ +sp_after_comma = force +pos_comma = trail_break +pos_enum_comma = lead_break
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comment_wrap.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comment_wrap.cfg new file mode 100644 index 00000000..e42e00a1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/enum_comment_wrap.cfg @@ -0,0 +1,2 @@ +input_tab_size = 4 +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/extern_func.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/extern_func.cfg new file mode 100644 index 00000000..a6135e8a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/extern_func.cfg @@ -0,0 +1,2 @@ +nl_before_func_body_def = 2 +nl_var_def_blk_start = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/footer.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/footer.txt new file mode 100644 index 00000000..1d2f941f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/footer.txt @@ -0,0 +1 @@ +// @filename $(filename) as input file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_class.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_class.cfg new file mode 100644 index 00000000..7f01b7be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_class.cfg @@ -0,0 +1,5 @@ +indent_class = true +nl_before_func_class_def = 3 +nl_before_func_class_proto = 1 +nl_before_func_body_def = 3 +nl_before_func_body_proto = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_param.cfg new file mode 100644 index 00000000..9162fd6d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/func_param.cfg @@ -0,0 +1,7 @@ +sp_paren_paren = remove +sp_after_ptr_star = remove +sp_ptr_star_func_var = remove +sp_ptr_star_func_type = remove +sp_func_proto_paren = remove +sp_inside_fparen = remove +sp_after_tparen_close = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-f.cfg new file mode 100644 index 00000000..a870e0c5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-f.cfg @@ -0,0 +1,3 @@ +sp_after_byref = force +sp_after_ptr_star = force +sp_byref_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-r.cfg new file mode 100644 index 00000000..9b70479a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/functype_param-r.cfg @@ -0,0 +1,3 @@ +sp_after_byref = remove +sp_after_ptr_star = remove +sp_byref_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1516.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1516.cfg new file mode 100644 index 00000000..9d8433d8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1516.cfg @@ -0,0 +1,4 @@ +nl_var_def_blk_end_func_top = 2 +nl_var_def_blk_start = 1 +nl_var_def_blk_end = 2 +nl_var_def_blk_in = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.cfg new file mode 100644 index 00000000..5506f68c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.cfg @@ -0,0 +1 @@ +cmt_insert_func_header = "i1536.txt" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.txt new file mode 100644 index 00000000..d34c497d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1536.txt @@ -0,0 +1 @@ +// $(function) diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1768.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1768.cfg new file mode 100644 index 00000000..9174483a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i1768.cfg @@ -0,0 +1,2 @@ +nl_func_call_paren = remove +nl_func_decl_start = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i683.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i683.cfg new file mode 100644 index 00000000..2b6edefe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/i683.cfg @@ -0,0 +1,22 @@ +# https://github.com/uncrustify/uncrustify/issues/683 +# +enable_digraphs = true +# with enable_digraphs, if spaces in +# arithmetic, assign and bool +# and preprocessor, stringify, characterize and concatenation operators +# and before empty brackets +# are shortened down, +sp_arith = force +sp_assign = force +sp_pp_concat = force +sp_pp_stringify = force +sp_bool = force +sp_before_squares = force +# AND if spaces inside brackets are added, +sp_inside_square = add +# AND function definition braces are on a new line +# (closing ones will be moved by default, if recognized) +nl_fdef_brace = force +# than every di/tri-grahp was correctly tokenized + +sp_before_vardef_square = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/if_chain_braces_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/if_chain_braces_2.cfg new file mode 100644 index 00000000..792ea1a0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/if_chain_braces_2.cfg @@ -0,0 +1,3 @@ +sp_sparen_brace = add +mod_full_brace_if_chain = 1 +mod_full_brace_if_chain_only = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_braces_no.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_braces_no.cfg new file mode 100644 index 00000000..24ca060b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_braces_no.cfg @@ -0,0 +1,7 @@ +indent_columns = 2 +indent_braces = true +indent_braces_no_func = true +indent_braces_no_class = true +indent_braces_no_struct = true +indent_class = true +nl_start_of_file = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t.cfg new file mode 100644 index 00000000..78320e8a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t.cfg @@ -0,0 +1,2 @@ +indent_class = true +sp_enum_after_assign = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t_columns-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t_columns-4.cfg new file mode 100644 index 00000000..5184fc9a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_class-t_columns-4.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-11.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-11.cfg new file mode 100644 index 00000000..15cef67e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-11.cfg @@ -0,0 +1 @@ +indent_columns = 11
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-2.cfg new file mode 100644 index 00000000..f33cb665 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-2.cfg @@ -0,0 +1 @@ +indent_columns = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-4.cfg new file mode 100644 index 00000000..f4f5183a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_columns-4.cfg @@ -0,0 +1 @@ +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comma_brace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comma_brace.cfg new file mode 100644 index 00000000..19c3b161 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comma_brace.cfg @@ -0,0 +1,4 @@ +code_width = 60 +indent_columns = 4 +indent_comma_brace = 1 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comment_align_thresh_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comment_align_thresh_2.cfg new file mode 100644 index 00000000..2f5d5cab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_comment_align_thresh_2.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_col1_comment = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init.cfg new file mode 100644 index 00000000..cb1cef12 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init.cfg @@ -0,0 +1,14 @@ +indent_columns = 2 +indent_before_class_colon = 4 +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init = 2 +indent_func_class_param = true +indent_func_param_double = true +indent_access_spec = 2 +nl_collapse_empty_body = true +nl_constr_init_args = add +nl_func_def_start = add +nl_func_def_args = add +nl_before_access_spec = 2 +pos_constr_comma = trail_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_following.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_following.cfg new file mode 100644 index 00000000..140e8f17 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_following.cfg @@ -0,0 +1,17 @@ +indent_columns = 2 +indent_before_class_colon = -2 +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init_following = 5 +indent_ctor_init = 2 +indent_func_class_param = true +indent_func_param_double = true +indent_access_spec = 2 +nl_collapse_empty_body = true +nl_constr_init_args = add +nl_func_def_start = add +nl_func_def_args = add +nl_before_access_spec = 2 +pos_constr_comma = trail_force +nl_class_colon = force +pos_class_colon = lead_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_leading.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_leading.cfg new file mode 100644 index 00000000..ce8fb22f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_init_leading.cfg @@ -0,0 +1,17 @@ +indent_columns = 2 +indent_before_class_colon = -2 +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init_leading = 5 +indent_ctor_init = 2 +indent_func_class_param = true +indent_func_param_double = true +indent_access_spec = 2 +nl_collapse_empty_body = true +nl_constr_init_args = add +nl_func_def_start = add +nl_func_def_args = add +nl_before_access_spec = 2 +pos_constr_comma = trail_force +nl_class_colon = force +pos_class_colon = lead_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_members_twice.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_members_twice.cfg new file mode 100644 index 00000000..82c708d4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ctor_members_twice.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_constr_colon = true +indent_ctor_init = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_else_if-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_else_if-t.cfg new file mode 100644 index 00000000..2dcd9a57 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_else_if-t.cfg @@ -0,0 +1 @@ +indent_else_if = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_first_for_expr-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_first_for_expr-t.cfg new file mode 100644 index 00000000..ff68e85c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_first_for_expr-t.cfg @@ -0,0 +1,2 @@ +indent_semicolon_for_paren = true # +indent_first_for_expr = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_func_proto_param-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_func_proto_param-t.cfg new file mode 100644 index 00000000..04301ff7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_func_proto_param-t.cfg @@ -0,0 +1 @@ +indent_func_proto_param = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_class_colon-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_class_colon-t.cfg new file mode 100644 index 00000000..6564f4d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_class_colon-t.cfg @@ -0,0 +1 @@ +indent_ignore_before_class_colon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_constr_colon-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_constr_colon-t.cfg new file mode 100644 index 00000000..6e9fa193 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_ignore_before_constr_colon-t.cfg @@ -0,0 +1 @@ +indent_ignore_before_constr_colon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace-t.cfg new file mode 100644 index 00000000..90bbdaec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace-t.cfg @@ -0,0 +1,3 @@ +indent_namespace = true +indent_namespace_single_indent = true +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_inner_only.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_inner_only.cfg new file mode 100644 index 00000000..bb715758 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_inner_only.cfg @@ -0,0 +1,2 @@ +indent_namespace = true +indent_namespace_inner_only = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_single_indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_single_indent.cfg new file mode 100644 index 00000000..9f66fea4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_namespace_single_indent.cfg @@ -0,0 +1,3 @@ +indent_namespace = true +indent_namespace_single_indent = true +indent_extern = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_off_after_return.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_off_after_return.cfg new file mode 100644 index 00000000..077c5f94 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_off_after_return.cfg @@ -0,0 +1,3 @@ +indent_off_after_return = true +indent_off_after_return_new = false +sp_after_decltype = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_once.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_once.cfg new file mode 100644 index 00000000..013985b9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_once.cfg @@ -0,0 +1,3 @@ +indent_columns = 2 +indent_continue = 5 +use_indent_continue_only_once = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_param.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_param.cfg new file mode 100644 index 00000000..07d98897 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_param.cfg @@ -0,0 +1,2 @@ +indent_param = 3 +indent_func_proto_param = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_call-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_call-t.cfg new file mode 100644 index 00000000..eafffebc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_call-t.cfg @@ -0,0 +1 @@ +indent_paren_after_func_call = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_decl-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_decl-t.cfg new file mode 100644 index 00000000..c4db2ffe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_decl-t.cfg @@ -0,0 +1 @@ +indent_paren_after_func_decl = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_def-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_def-t.cfg new file mode 100644 index 00000000..5d2895e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_after_func_def-t.cfg @@ -0,0 +1 @@ +indent_paren_after_func_def = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_0.cfg new file mode 100644 index 00000000..b14f0bc5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_0.cfg @@ -0,0 +1 @@ +indent_paren_close = 0
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_1.cfg new file mode 100644 index 00000000..06795707 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_1.cfg @@ -0,0 +1 @@ +indent_paren_close = 1
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_2.cfg new file mode 100644 index 00000000..b78b2995 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_paren_close_2.cfg @@ -0,0 +1 @@ +indent_paren_close = 2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_semicolon_for_paren-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_semicolon_for_paren-t.cfg new file mode 100644 index 00000000..6b49dbd6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_semicolon_for_paren-t.cfg @@ -0,0 +1 @@ +indent_semicolon_for_paren = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_shift.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_shift.cfg new file mode 100644 index 00000000..481d7d07 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_shift.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_continue = 4 +indent_shift = 1 +align_left_shift = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_var_def_cont-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_var_def_cont-t.cfg new file mode 100644 index 00000000..f439a00b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_var_def_cont-t.cfg @@ -0,0 +1 @@ +indent_var_def_cont = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_with_tabs-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_with_tabs-0.cfg new file mode 100644 index 00000000..bd2c3a08 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/indent_with_tabs-0.cfg @@ -0,0 +1 @@ +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/initlist_leading_commas.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/initlist_leading_commas.cfg new file mode 100644 index 00000000..ebd35547 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/initlist_leading_commas.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_constr_init_args = force +pos_constr_comma = trail
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/interface-keyword-in-cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/interface-keyword-in-cpp.cfg new file mode 100644 index 00000000..cbbf215b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/interface-keyword-in-cpp.cfg @@ -0,0 +1,2 @@ +sp_before_dc = remove +sp_after_dc = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1778.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1778.cfg new file mode 100644 index 00000000..2f4bd642 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1778.cfg @@ -0,0 +1,3 @@ +sp_after_ptr_star = add +sp_after_byref = add +sp_inside_sparen = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1782.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1782.cfg new file mode 100644 index 00000000..6d50bfeb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1782.cfg @@ -0,0 +1,12 @@ +sp_compare = force +sp_inside_paren = force +sp_paren_paren = force +sp_before_angle = remove +sp_inside_angle = force +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_func_call_paren_empty = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1804.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1804.cfg new file mode 100644 index 00000000..4c424b89 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1804.cfg @@ -0,0 +1,10 @@ +sp_after_type = force +sp_after_cast = remove +sp_inside_paren_cast = remove +sp_cpp_cast_paren = remove +sp_addr = remove +sp_after_byref = force +sp_inside_paren = force +sp_inside_fparen = force +sp_inside_square = force +sp_before_square = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1887.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1887.cfg new file mode 100644 index 00000000..956ea6a9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1887.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +align_right_cmt_span = 3 +align_right_cmt_same_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1916.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1916.cfg new file mode 100644 index 00000000..414a4a96 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1916.cfg @@ -0,0 +1,3 @@ +sp_after_type = ignore +sp_after_cast = force +sp_sizeof_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1985.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1985.cfg new file mode 100644 index 00000000..3be58c29 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1985.cfg @@ -0,0 +1,6 @@ +nl_class_leave_one_liners = true +nl_class_leave_one_liner_groups = true +nl_after_func_proto_group = 3 +nl_after_func_class_proto_group = 3 +nl_before_func_body_def = 3 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1997.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1997.cfg new file mode 100644 index 00000000..1f79d36e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_1997.cfg @@ -0,0 +1,5 @@ +sp_arith = force +sp_after_decltype = remove +sp_type_brace_init_lst = remove +nl_after_brace_open = true +nl_after_brace_close = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-1.cfg new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-1.cfg diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-2.cfg new file mode 100644 index 00000000..37eeb5f2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2124-2.cfg @@ -0,0 +1,2 @@ +mod_full_brace_if_chain = 1 +mod_full_brace_nl = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2209.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2209.cfg new file mode 100644 index 00000000..414a7273 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2209.cfg @@ -0,0 +1,4 @@ +nl_inside_namespace = 2 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +code_width = 74 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_1.cfg new file mode 100644 index 00000000..56ab3a56 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_1.cfg @@ -0,0 +1,4 @@ +tok_split_gte = false +sp_permit_cpp11_shift = true +sp_angle_shift = remove +sp_inside_angle = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_2.cfg new file mode 100644 index 00000000..2848fb59 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_2.cfg @@ -0,0 +1,4 @@ +tok_split_gte = false +sp_permit_cpp11_shift = true +sp_angle_shift = force +sp_inside_angle = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_3.cfg new file mode 100644 index 00000000..52d17555 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_2623_3.cfg @@ -0,0 +1,4 @@ +tok_split_gte = false +sp_permit_cpp11_shift = true +sp_angle_shift = ignore +sp_inside_angle = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_neg.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_neg.cfg new file mode 100644 index 00000000..790403a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_neg.cfg @@ -0,0 +1,7 @@ +code_width = 60 +indent_with_tabs = 1 +indent_columns = 2 +indent_continue = -7 +input_tab_size = 2 +output_tab_size = 2 +sp_assign = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_pos.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_pos.cfg new file mode 100644 index 00000000..02fa0c38 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_pos.cfg @@ -0,0 +1,7 @@ +code_width = 60 +indent_with_tabs = 1 +indent_columns = 2 +indent_continue = 5 +input_tab_size = 2 +output_tab_size = 2 +sp_assign = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_zero.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_zero.cfg new file mode 100644 index 00000000..cd22d8bb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_1_zero.cfg @@ -0,0 +1,7 @@ +code_width = 60 +indent_with_tabs = 1 +indent_columns = 2 +indent_continue = 0 +input_tab_size = 2 +output_tab_size = 2 +sp_assign = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_neg.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_neg.cfg new file mode 100644 index 00000000..806250c7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_neg.cfg @@ -0,0 +1,69 @@ +newlines = lf +input_tab_size = 2 +output_tab_size = 2 +sp_arith = force +sp_assign = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_before_ptr_star_func = remove +sp_before_unnamed_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove +sp_after_ptr_star_func = force +sp_ptr_star_func_var = remove +sp_ptr_star_func_type = remove +sp_ptr_star_paren = force +sp_before_byref = force +sp_before_unnamed_byref = force +sp_after_byref = remove +sp_after_comma = force +sp_before_comma = remove +sp_after_constr_colon = force +sp_before_constr_colon = force +sp_type_func = force +sp_type_brace_init_lst = force +sp_func_type_paren = remove +sp_func_def_paren = remove +sp_func_def_paren_empty = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_cond_question = force +indent_columns = 2 +indent_continue = -8 +indent_with_tabs = 1 +indent_align_string = true +indent_ignore_before_constr_colon = false +indent_constr_colon = true +indent_ctor_init_leading = 2 +indent_ctor_init_following = 2 +indent_ctor_init = 2 +indent_else_if = false +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_case_colon_brace = force +nl_class_brace = force +nl_class_init_args = remove +nl_constr_init_args = remove +nl_enum_own_lines = force +nl_func_decl_start = remove +nl_func_def_start = remove +nl_func_decl_args = remove +nl_func_def_args = remove +nl_func_call_args = remove +nl_func_decl_end = remove +nl_func_def_end = remove +nl_func_decl_empty = remove +nl_func_def_empty = remove +nl_func_call_empty = remove +nl_func_call_start = remove +nl_func_call_end = remove +nl_before_brace_open = true +pos_arith = join +pos_assign = join +pos_bool = trail +pos_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail +code_width = 100 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_pos.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_pos.cfg new file mode 100644 index 00000000..29afa7d9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_pos.cfg @@ -0,0 +1,69 @@ +newlines = lf +input_tab_size = 2 +output_tab_size = 2 +sp_arith = force +sp_assign = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_before_ptr_star_func = remove +sp_before_unnamed_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove +sp_after_ptr_star_func = force +sp_ptr_star_func_var = remove +sp_ptr_star_func_type = remove +sp_ptr_star_paren = force +sp_before_byref = force +sp_before_unnamed_byref = force +sp_after_byref = remove +sp_after_comma = force +sp_before_comma = remove +sp_after_constr_colon = force +sp_before_constr_colon = force +sp_type_func = force +sp_type_brace_init_lst = force +sp_func_type_paren = remove +sp_func_def_paren = remove +sp_func_def_paren_empty = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_cond_question = force +indent_columns = 2 +indent_continue = 4 +indent_with_tabs = 1 +indent_align_string = true +indent_ignore_before_constr_colon = false +indent_constr_colon = true +indent_ctor_init_leading = 2 +indent_ctor_init_following = 2 +indent_ctor_init = 2 +indent_else_if = false +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_case_colon_brace = force +nl_class_brace = force +nl_class_init_args = remove +nl_constr_init_args = remove +nl_enum_own_lines = force +nl_func_decl_start = remove +nl_func_def_start = remove +nl_func_decl_args = remove +nl_func_def_args = remove +nl_func_call_args = remove +nl_func_decl_end = remove +nl_func_def_end = remove +nl_func_decl_empty = remove +nl_func_def_empty = remove +nl_func_call_empty = remove +nl_func_call_start = remove +nl_func_call_end = remove +nl_before_brace_open = true +pos_arith = join +pos_assign = join +pos_bool = trail +pos_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail +code_width = 100 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_zero.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_zero.cfg new file mode 100644 index 00000000..25453288 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3105_2_zero.cfg @@ -0,0 +1,69 @@ +newlines = lf +input_tab_size = 2 +output_tab_size = 2 +sp_arith = force +sp_assign = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_ptr_star = force +sp_before_ptr_star_func = remove +sp_before_unnamed_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_qualifier = remove +sp_after_ptr_star_func = force +sp_ptr_star_func_var = remove +sp_ptr_star_func_type = remove +sp_ptr_star_paren = force +sp_before_byref = force +sp_before_unnamed_byref = force +sp_after_byref = remove +sp_after_comma = force +sp_before_comma = remove +sp_after_constr_colon = force +sp_before_constr_colon = force +sp_type_func = force +sp_type_brace_init_lst = force +sp_func_type_paren = remove +sp_func_def_paren = remove +sp_func_def_paren_empty = remove +sp_inside_fparens = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_cond_question = force +indent_columns = 2 +indent_continue = 0 +indent_with_tabs = 1 +indent_align_string = true +indent_ignore_before_constr_colon = false +indent_constr_colon = true +indent_ctor_init_leading = 2 +indent_ctor_init_following = 2 +indent_ctor_init = 2 +indent_else_if = false +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_case_colon_brace = force +nl_class_brace = force +nl_class_init_args = remove +nl_constr_init_args = remove +nl_enum_own_lines = force +nl_func_decl_start = remove +nl_func_def_start = remove +nl_func_decl_args = remove +nl_func_def_args = remove +nl_func_call_args = remove +nl_func_decl_end = remove +nl_func_def_end = remove +nl_func_decl_empty = remove +nl_func_def_empty = remove +nl_func_call_empty = remove +nl_func_call_start = remove +nl_func_call_end = remove +nl_before_brace_open = true +pos_arith = join +pos_assign = join +pos_bool = trail +pos_comma = trail +pos_constr_comma = trail +pos_constr_colon = trail +code_width = 100 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116-2.cfg new file mode 100644 index 00000000..f26ef61e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116-2.cfg @@ -0,0 +1,6 @@ +indent_cpp_lambda_body = true +indent_align_assign = true +indent_columns = 4 +indent_with_tabs = 0 +indent_continue = 0 +indent_paren_close = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116.cfg new file mode 100644 index 00000000..034f2697 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3116.cfg @@ -0,0 +1,6 @@ +indent_cpp_lambda_body = true +indent_align_assign = false +indent_columns = 4 +indent_with_tabs = 0 +indent_continue = 4 +indent_paren_close = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3378.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3378.cfg new file mode 100644 index 00000000..8ecc9f2f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_3378.cfg @@ -0,0 +1,2 @@ +indent_class = true +indent_ignore_label = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_564.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_564.cfg new file mode 100644 index 00000000..d1496108 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_564.cfg @@ -0,0 +1 @@ +align_same_func_call_params = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-a.cfg new file mode 100644 index 00000000..24a1a182 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-a.cfg @@ -0,0 +1,12 @@ +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = force +sp_after_byref = remove +sp_inside_fparen = remove +indent_columns = 4 +indent_class = true +nl_class_brace = force +sp_after_assign = remove +sp_assign = force +sp_assign_default = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-b.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-b.cfg new file mode 100644 index 00000000..b61ac3e2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-b.cfg @@ -0,0 +1,12 @@ +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = force +sp_after_byref = remove +sp_inside_fparen = remove +indent_columns = 4 +indent_class = true +nl_class_brace = force +sp_before_assign = remove +sp_assign = force +sp_assign_default = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-i.cfg new file mode 100644 index 00000000..c0177cb1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574-i-i.cfg @@ -0,0 +1,12 @@ +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = force +sp_after_byref = remove +sp_inside_fparen = remove +indent_columns = 4 +indent_class = true +nl_class_brace = force +sp_before_assign = ignore +sp_assign = ignore +sp_assign_default = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574.cfg new file mode 100644 index 00000000..925ee5fe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/issue_574.cfg @@ -0,0 +1,9 @@ +sp_paren_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = force +sp_after_byref = remove +sp_inside_fparen = remove +indent_columns = 4 +indent_class = true +nl_class_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim2.cfg new file mode 100644 index 00000000..18b12bbe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim2.cfg @@ -0,0 +1,6 @@ +sp_func_def_paren = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_before_dc = remove +sp_after_dc = remove +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim3.cfg new file mode 100644 index 00000000..0fe42133 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim3.cfg @@ -0,0 +1,4 @@ +sp_paren_paren = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim5.cfg new file mode 100644 index 00000000..56a1b3da --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/kdepim5.cfg @@ -0,0 +1,3 @@ +sp_before_sparen = force +indent_columns = 4 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda1.cfg new file mode 100644 index 00000000..c0fbc795 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda1.cfg @@ -0,0 +1,17 @@ +sp_arith = force +sp_assign = force +sp_cpp_lambda_assign = remove +sp_cpp_lambda_square_paren = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +sp_inside_braces = force +sp_fparen_brace = force +sp_cpp_lambda_square_brace = force +sp_cpp_lambda_paren_brace = force +indent_columns = 3 +indent_with_tabs = 0 +nl_cpp_lambda_leave_one_liners = true +nl_cpp_ldef_brace = remove +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda2.cfg new file mode 100644 index 00000000..9f698209 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda2.cfg @@ -0,0 +1,14 @@ +sp_arith = force +sp_assign = force +sp_cpp_lambda_assign = remove +sp_cpp_lambda_square_paren = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_brace_fparen = add +nl_cpp_ldef_brace = add +nl_after_semicolon = true +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda3.cfg new file mode 100644 index 00000000..ffed35eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda3.cfg @@ -0,0 +1,17 @@ +sp_arith = force +sp_assign = force +sp_cpp_lambda_assign = remove +sp_cpp_lambda_square_paren = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +sp_inside_braces = force +sp_fparen_brace = force +indent_columns = 3 +indent_with_tabs = 0 +indent_cpp_lambda_body = true +nl_cpp_lambda_leave_one_liners = true +nl_cpp_ldef_brace = remove +eat_blanks_before_close_brace = true +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda4.cfg new file mode 100644 index 00000000..63a99010 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda4.cfg @@ -0,0 +1,20 @@ +sp_arith = force +sp_assign = force +sp_cpp_lambda_assign = remove +sp_cpp_lambda_square_paren = force +sp_inside_paren = remove +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_byref = remove +sp_inside_braces = force +sp_fparen_brace = force +indent_columns = 3 +indent_with_tabs = 0 +nl_cpp_lambda_leave_one_liners = true +nl_cpp_ldef_brace = remove +eat_blanks_before_close_brace = true +mod_paren_on_return = add + +# Specific testing of the following two settings +indent_cpp_lambda_body = true +indent_continue = 4 # number diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda_in_one_liner.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda_in_one_liner.cfg new file mode 100644 index 00000000..7b61e767 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lambda_in_one_liner.cfg @@ -0,0 +1,7 @@ +sp_cpp_lambda_square_brace = remove +sp_before_square = remove +nl_func_leave_one_liners = true +nl_cpp_lambda_leave_one_liners = true +nl_after_brace_open = true +sp_inside_braces = force +sp_inside_type_brace_init_lst = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Mac.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Mac.cfg new file mode 100644 index 00000000..d8b41944 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Mac.cfg @@ -0,0 +1,10 @@ +indent_columns = 3 +indent_with_tabs = 0 + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 2 + + +# The type of line endings. Default=Auto. +# Newlines Unix|Newlines Win|Newlines Mac|Newlines Auto +newlines = cr diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Unix.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Unix.cfg new file mode 100644 index 00000000..e6cf9411 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Unix.cfg @@ -0,0 +1,9 @@ +indent_columns = 3 +indent_with_tabs = 0 + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 2 + +# The type of line endings. Default=Auto. +# Newlines Unix|Newlines Win|Newlines Mac|Newlines Auto +newlines = lf diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Win.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Win.cfg new file mode 100644 index 00000000..cb40d365 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/lineEndings-to-Win.cfg @@ -0,0 +1,9 @@ +indent_columns = 3 +indent_with_tabs = 0 + +# The span for aligning on '=' in assignments (0=don't align) +align_assign_span = 2 + +# The type of line endings. Default=Auto. +# Newlines Unix|Newlines Win|Newlines Mac|Newlines Auto +newlines = crlf diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_br_cmt.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_br_cmt.cfg new file mode 100644 index 00000000..f66ee7c7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_br_cmt.cfg @@ -0,0 +1,14 @@ +sp_before_sparen = force +indent_columns = 3 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +indent_access_spec = 2 +nl_class_leave_one_liners = true +nl_after_access_spec = 1 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +mod_add_long_function_closebrace_comment = 10 +mod_add_long_namespace_closebrace_comment = 10 +mod_add_long_class_closebrace_comment = 8 +mod_add_long_switch_closebrace_comment = 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_namespace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_namespace.cfg new file mode 100644 index 00000000..74f99a18 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/long_namespace.cfg @@ -0,0 +1,2 @@ +indent_namespace = true +indent_namespace_limit = 6
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_class_closebrace_comment.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_class_closebrace_comment.cfg new file mode 100644 index 00000000..a3752ab8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_class_closebrace_comment.cfg @@ -0,0 +1,2 @@ +mod_add_long_class_closebrace_comment = 1 +nl_after_class = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_namespace_closebrace_comment-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_namespace_closebrace_comment-1.cfg new file mode 100644 index 00000000..a94f5a62 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_add_long_namespace_closebrace_comment-1.cfg @@ -0,0 +1 @@ +mod_add_long_namespace_closebrace_comment = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-1.cfg new file mode 100644 index 00000000..678bce2d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-1.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +mod_full_brace_if_chain = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-2.cfg new file mode 100644 index 00000000..6c0fec7c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-2.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +mod_full_brace_if_chain = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-3.cfg new file mode 100644 index 00000000..90ab2ba5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_full_brace_if_chain-3.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +mod_full_brace_if_chain = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-a.cfg new file mode 100644 index 00000000..ca119beb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-a.cfg @@ -0,0 +1 @@ +mod_paren_on_throw = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-f.cfg new file mode 100644 index 00000000..b442438e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-f.cfg @@ -0,0 +1 @@ +mod_paren_on_throw = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-i.cfg new file mode 100644 index 00000000..517dfce3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-i.cfg @@ -0,0 +1 @@ +mod_paren_on_throw = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-r.cfg new file mode 100644 index 00000000..498b6b01 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_paren_on_throw-r.cfg @@ -0,0 +1 @@ +mod_paren_on_throw = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_empty_return-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_empty_return-t.cfg new file mode 100644 index 00000000..3e1bcd1f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_empty_return-t.cfg @@ -0,0 +1 @@ +mod_remove_empty_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_extra_semicolon-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_extra_semicolon-t.cfg new file mode 100644 index 00000000..0f2d5246 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/mod_remove_extra_semicolon-t.cfg @@ -0,0 +1 @@ +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_1.cfg new file mode 100644 index 00000000..fe15ff0a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_1.cfg @@ -0,0 +1,2 @@ +nl_func_decl_start_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_10.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_10.cfg new file mode 100644 index 00000000..e5b917e8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_10.cfg @@ -0,0 +1,2 @@ +nl_func_call_end_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_2.cfg new file mode 100644 index 00000000..b4063fd3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_2.cfg @@ -0,0 +1,2 @@ +nl_func_def_start_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_3.cfg new file mode 100644 index 00000000..d1c40d07 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_3.cfg @@ -0,0 +1,2 @@ +nl_func_decl_end_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_4.cfg new file mode 100644 index 00000000..651b4823 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_4.cfg @@ -0,0 +1,2 @@ +nl_func_def_end_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_5.cfg new file mode 100644 index 00000000..94140b21 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_5.cfg @@ -0,0 +1,2 @@ +nl_func_decl_args_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_6.cfg new file mode 100644 index 00000000..4fd7a077 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_6.cfg @@ -0,0 +1,2 @@ +nl_func_def_args_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_7.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_7.cfg new file mode 100644 index 00000000..4ee5733c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_7.cfg @@ -0,0 +1,7 @@ +nl_func_decl_start_multi_line = true +nl_func_def_start_multi_line = true +nl_func_decl_args_multi_line = true +nl_func_def_args_multi_line = true +nl_func_decl_end_multi_line = true +nl_func_def_end_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_8.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_8.cfg new file mode 100644 index 00000000..5d6d9c63 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_8.cfg @@ -0,0 +1,2 @@ +nl_func_call_start_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_9.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_9.cfg new file mode 100644 index 00000000..be9a43e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/multi_line_9.cfg @@ -0,0 +1,2 @@ +nl_func_call_args_multi_line = true +code_width = 70
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nSolve.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nSolve.cfg new file mode 100644 index 00000000..6cc6fc27 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nSolve.cfg @@ -0,0 +1,5 @@ +nl_func_leave_one_liners = true +align_var_def_span = 1 +align_assign_span = 1 +align_func_proto_span = 1 +align_single_line_func = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/negative_indent.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/negative_indent.cfg new file mode 100644 index 00000000..39b1b007 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/negative_indent.cfg @@ -0,0 +1,13 @@ +indent_columns = 4 +indent_continue = 4 +indent_with_tabs = 0 +indent_class = true +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init = -2 +indent_access_spec = -2 +nl_class_init_args = force +nl_class_colon = remove +nl_constr_colon = force +pos_class_comma = trail +pos_constr_colon = lead
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_a.cfg new file mode 100644 index 00000000..d7501092 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_a.cfg @@ -0,0 +1,4 @@ +sp_paren_paren = remove +sp_between_new_paren = add +sp_after_newop_paren = add +sp_inside_newop_paren = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_f.cfg new file mode 100644 index 00000000..16784899 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_f.cfg @@ -0,0 +1,4 @@ +sp_paren_paren = force +sp_between_new_paren = force +sp_after_newop_paren = force +sp_inside_newop_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_paren_open_close.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_paren_open_close.cfg new file mode 100644 index 00000000..789c7abe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_paren_open_close.cfg @@ -0,0 +1,3 @@ +sp_paren_paren = force +sp_inside_newop_paren_open = force +sp_inside_newop_paren_close = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_r.cfg new file mode 100644 index 00000000..b72cd2ae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/new_op_r.cfg @@ -0,0 +1,4 @@ +sp_paren_paren = force +sp_between_new_paren = remove +sp_after_newop_paren = remove +sp_inside_newop_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl-brAfter-fcallParen.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl-brAfter-fcallParen.cfg new file mode 100644 index 00000000..6a83f800 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl-brAfter-fcallParen.cfg @@ -0,0 +1,2 @@ +nl_func_call_paren = remove +nl_after_brace_close = true #
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_access_spec.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_access_spec.cfg new file mode 100644 index 00000000..a5d98c44 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_access_spec.cfg @@ -0,0 +1,8 @@ +indent_class = true +indent_access_spec = 2 +nl_class_brace = force +nl_after_semicolon = true +nl_before_access_spec = 3 +nl_after_access_spec = 2 +nl_after_func_body_class = 2 +nl_after_struct = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body-2.cfg new file mode 100644 index 00000000..6eb57487 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body-2.cfg @@ -0,0 +1,8 @@ +sp_fparen_brace = force +indent_class = true +nl_class_leave_one_liners = true +nl_fdef_brace = remove +nl_after_func_body = 4 +nl_min_after_func_body = 6 +nl_after_func_body_one_liner = 2 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body.cfg new file mode 100644 index 00000000..2da46cf7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_body.cfg @@ -0,0 +1,6 @@ +sp_fparen_brace = force +indent_class = true +nl_fdef_brace = remove +nl_after_func_body = 4 +nl_min_after_func_body = 3 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_class_proto-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_class_proto-3.cfg new file mode 100644 index 00000000..87b84e91 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_class_proto-3.cfg @@ -0,0 +1 @@ +nl_after_func_class_proto = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto-3.cfg new file mode 100644 index 00000000..c9bc1f45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto-3.cfg @@ -0,0 +1 @@ +nl_after_func_proto = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto_group-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto_group-3.cfg new file mode 100644 index 00000000..63fa256a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_after_func_proto_group-3.cfg @@ -0,0 +1 @@ +nl_after_func_proto_group = 3
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_assign_leave_one_liners.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_assign_leave_one_liners.cfg new file mode 100644 index 00000000..6914813b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_assign_leave_one_liners.cfg @@ -0,0 +1,4 @@ +nl_type_brace_init_lst=force +nl_type_brace_init_lst_close=force +nl_type_brace_init_lst_open=force +nl_assign_leave_one_liners=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_1.cfg new file mode 100644 index 00000000..4146c6fb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_1.cfg @@ -0,0 +1 @@ +nl_before_brace_open = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_2.cfg new file mode 100644 index 00000000..bc1aaf83 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_2.cfg @@ -0,0 +1,23 @@ +nl_before_brace_open = true +nl_assign_leave_one_liners = true +nl_class_leave_one_liners = true +nl_enum_leave_one_liners = true +nl_getset_leave_one_liners = true +nl_cs_property_leave_one_liners = true +nl_func_leave_one_liners = true +nl_cpp_lambda_leave_one_liners = true +nl_if_leave_one_liners = true +nl_while_leave_one_liners = true +nl_for_leave_one_liners = true +nl_oc_msg_leave_one_liner = true +nl_namespace_two_to_one_liner = true +nl_create_if_one_liner = true +nl_create_for_one_liner = true +nl_create_while_one_liner = true +nl_create_func_def_one_liner = true +nl_create_list_one_liner = true +nl_split_if_one_liner = true +nl_split_for_one_liner = true +nl_split_while_one_liner = true +nl_class_leave_one_liner_groups = true +nl_after_func_body_one_liner = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_3.cfg new file mode 100644 index 00000000..02daa843 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_brace_open_3.cfg @@ -0,0 +1,23 @@ +nl_before_brace_open = true +nl_assign_leave_one_liners = true +nl_class_leave_one_liners = true +nl_enum_leave_one_liners = true +nl_getset_leave_one_liners = true +nl_cs_property_leave_one_liners = true +nl_func_leave_one_liners = true +nl_cpp_lambda_leave_one_liners = true +nl_if_leave_one_liners = true +nl_while_leave_one_liners = true +nl_for_leave_one_liners = true +nl_oc_msg_leave_one_liner = true +nl_namespace_two_to_one_liner = false +nl_create_if_one_liner = true +nl_create_for_one_liner = true +nl_create_while_one_liner = true +nl_create_func_def_one_liner = true +nl_create_list_one_liner = true +nl_split_if_one_liner = true +nl_split_for_one_liner = true +nl_split_while_one_liner = true +nl_class_leave_one_liner_groups = true +nl_after_func_body_one_liner = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-1.cfg new file mode 100644 index 00000000..03ee374a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-1.cfg @@ -0,0 +1 @@ +nl_before_func_body_def = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-2.cfg new file mode 100644 index 00000000..2f3ba945 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_func_body_def-2.cfg @@ -0,0 +1 @@ +nl_before_func_body_def = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-f.cfg new file mode 100644 index 00000000..39539a4e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-f.cfg @@ -0,0 +1 @@ +nl_before_if_closing_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-r.cfg new file mode 100644 index 00000000..d3ab2d68 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_if_closing_paren-r.cfg @@ -0,0 +1 @@ +nl_before_if_closing_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_struct.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_struct.cfg new file mode 100644 index 00000000..ab325b19 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_before_struct.cfg @@ -0,0 +1 @@ +nl_before_struct = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_brace-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_brace-a.cfg new file mode 100644 index 00000000..25d3c271 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_brace-a.cfg @@ -0,0 +1 @@ +nl_brace_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-f.cfg new file mode 100644 index 00000000..0a731344 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-f.cfg @@ -0,0 +1 @@ +nl_brace_fparen = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-r.cfg new file mode 100644 index 00000000..5a749682 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_brace_fparen-r.cfg @@ -0,0 +1 @@ +nl_brace_fparen = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-a.cfg new file mode 100644 index 00000000..8c1eb70e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-a.cfg @@ -0,0 +1,3 @@ +indent_namespace = true +indent_class = true +nl_class_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-r.cfg new file mode 100644 index 00000000..29cc4dc6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_class-r.cfg @@ -0,0 +1,3 @@ +indent_namespace = true +indent_class = true +nl_class_brace = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace-r__nl_collapse_empty_body-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace-r__nl_collapse_empty_body-t.cfg new file mode 100644 index 00000000..26ee0c73 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace-r__nl_collapse_empty_body-t.cfg @@ -0,0 +1,2 @@ +nl_fdef_brace = remove +nl_collapse_empty_body_functions = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-f.cfg new file mode 100644 index 00000000..7f08f9e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-f.cfg @@ -0,0 +1 @@ +nl_fdef_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-fr.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-fr.cfg new file mode 100644 index 00000000..affe7156 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-fr.cfg @@ -0,0 +1,2 @@ +nl_fdef_brace = force +nl_fdef_brace_cond = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-r.cfg new file mode 100644 index 00000000..e64f7f0c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-r.cfg @@ -0,0 +1 @@ +nl_fdef_brace = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-rf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-rf.cfg new file mode 100644 index 00000000..9b12913e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_fdef_brace_cond-rf.cfg @@ -0,0 +1,2 @@ +nl_fdef_brace = remove +nl_fdef_brace_cond = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-f.cfg new file mode 100644 index 00000000..bdcceefd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-f.cfg @@ -0,0 +1,2 @@ +nl_for_brace = force
+nl_for_leave_one_liners = false
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-t.cfg new file mode 100644 index 00000000..4d11891e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_for_leave_one_liners-t.cfg @@ -0,0 +1,2 @@ +nl_for_brace = force
+nl_for_leave_one_liners = true
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_empty-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_empty-r.cfg new file mode 100644 index 00000000..da04d6fa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_empty-r.cfg @@ -0,0 +1 @@ +nl_func_call_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren-f.cfg new file mode 100644 index 00000000..480ce89f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren-f.cfg @@ -0,0 +1 @@ +nl_func_call_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren_empty-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren_empty-r.cfg new file mode 100644 index 00000000..48612eb5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_call_paren_empty-r.cfg @@ -0,0 +1 @@ +nl_func_call_paren_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_class_scope-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_class_scope-a.cfg new file mode 100644 index 00000000..dc9b2ec5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_class_scope-a.cfg @@ -0,0 +1 @@ +nl_func_class_scope = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_1.cfg new file mode 100644 index 00000000..6a7f8d9b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_1.cfg @@ -0,0 +1,15 @@ +# a few options to make the output pretty +sp_after_comma = force +sp_inside_fparen = force +# --- +nl_func_paren = remove +nl_func_def_paren = force +nl_func_decl_start = remove +nl_func_def_start = force +nl_func_decl_args = remove +nl_func_def_args = force +nl_func_decl_end = remove +nl_func_def_end = force +nl_func_def_empty = force +nl_inside_empty_func = 2 +nl_collapse_empty_body_functions = true # this option overrides nl_inside_empty_func diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_2.cfg new file mode 100644 index 00000000..c0495a4b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_decl_2.cfg @@ -0,0 +1,23 @@ +nl_func_paren = force +nl_func_def_paren = remove +nl_func_decl_start = force +nl_func_def_start = remove +nl_func_decl_args = force +nl_func_def_args = remove +nl_func_decl_end = force +nl_func_def_end = remove +nl_func_decl_empty = force +nl_func_def_empty = remove +nl_inside_empty_func = 5 +nl_max_blank_in_func = 3 # this option limits nl_inside_empty_func to 3 + +# a few more options to make the output pretty +sp_after_comma = force +sp_inside_fparen = force +align_func_params = true + +# test nl_inside_empty_func option with code width constraints and +# 'eat_blanks_before_close_brace' and 'eat_blanks_after_open_brace' set to true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +code_width = 25
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_def_paren_empty-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_def_paren_empty-r.cfg new file mode 100644 index 00000000..ddc5e5d2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_def_paren_empty-r.cfg @@ -0,0 +1,4 @@ +# The option that is being overridden by nl_func_def_paren_empty +nl_func_def_paren = force + +nl_func_def_paren_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_paren_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_paren_empty.cfg new file mode 100644 index 00000000..63f0b8ad --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_paren_empty.cfg @@ -0,0 +1,2 @@ +nl_func_paren = force # should be overridden by nl_func_paren_empty +nl_func_paren_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_scope_name-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_scope_name-a.cfg new file mode 100644 index 00000000..c814477d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_scope_name-a.cfg @@ -0,0 +1 @@ +nl_func_scope_name = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name-r.cfg new file mode 100644 index 00000000..9cc10873 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name-r.cfg @@ -0,0 +1 @@ +nl_func_type_name = remove #
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_class.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_class.cfg new file mode 100644 index 00000000..fcb08501 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_class.cfg @@ -0,0 +1,6 @@ +sp_cmt_cpp_start = add +nl_func_type_name = force +nl_func_type_name_class = remove +nl_func_proto_type_name = force +align_func_proto_span = 16 +align_on_operator = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_force.cfg new file mode 100644 index 00000000..ef8b317e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_force.cfg @@ -0,0 +1,5 @@ +sp_cmt_cpp_start = add +nl_func_type_name = force +nl_func_proto_type_name = force +align_func_proto_span = 16 +align_on_operator = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_mixed.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_mixed.cfg new file mode 100644 index 00000000..515400f2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_mixed.cfg @@ -0,0 +1,5 @@ +sp_cmt_cpp_start = add +nl_func_type_name = force +nl_func_proto_type_name = remove +align_func_proto_span = 16 +align_on_operator = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_remove.cfg new file mode 100644 index 00000000..ee38dd7e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_func_type_name_remove.cfg @@ -0,0 +1,4 @@ +sp_cmt_cpp_start = add +nl_func_type_name = remove +align_func_proto_span = 16 +align_on_operator = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_1.cfg new file mode 100644 index 00000000..c84309ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_1.cfg @@ -0,0 +1 @@ +nl_inside_namespace = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_2.cfg new file mode 100644 index 00000000..9edefd02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_inside_namespace_2.cfg @@ -0,0 +1,3 @@ +nl_inside_namespace = 2 +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_after_func_body.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_after_func_body.cfg new file mode 100644 index 00000000..2926bc32 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_after_func_body.cfg @@ -0,0 +1,5 @@ +sp_fparen_brace = force +indent_class = true +nl_fdef_brace = remove +nl_max_after_func_body = 3 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-1.cfg new file mode 100644 index 00000000..9aa3416c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-1.cfg @@ -0,0 +1 @@ +nl_max_blank_in_func = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-4.cfg new file mode 100644 index 00000000..8d0bdf67 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_max_blank_in_func-4.cfg @@ -0,0 +1 @@ +nl_max_blank_in_func = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_min_after_func_body.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_min_after_func_body.cfg new file mode 100644 index 00000000..93ff0359 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_min_after_func_body.cfg @@ -0,0 +1,5 @@ +sp_fparen_brace = force +indent_class = true +nl_fdef_brace = remove +nl_min_after_func_body = 3 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-a.cfg new file mode 100644 index 00000000..bc5d6469 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-a.cfg @@ -0,0 +1,2 @@ +indent_namespace = true +nl_namespace_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-r.cfg new file mode 100644 index 00000000..ca9c198d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_namespace-r.cfg @@ -0,0 +1,2 @@ +indent_namespace = true +nl_namespace_brace = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_remove_extra_newlines-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_remove_extra_newlines-1.cfg new file mode 100644 index 00000000..2d0c48b2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_remove_extra_newlines-1.cfg @@ -0,0 +1 @@ +nl_remove_extra_newlines = 1 # unsigned number diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-f.cfg new file mode 100644 index 00000000..a90d1500 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-f.cfg @@ -0,0 +1,17 @@ +# Forces a newline between template '>' and class +tok_split_gte = true +sp_arith = force +sp_compare = force +sp_before_byref = remove +sp_after_byref = force +sp_after_angle = force +sp_angle_paren_empty = remove +sp_after_operator = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_angle_word = force +indent_columns = 3 +indent_class = true +nl_template_class = force +nl_template_func = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-r.cfg new file mode 100644 index 00000000..443693e5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_template-r.cfg @@ -0,0 +1,21 @@ +# Removes newlines between template '>' and class +tok_split_gte = true +sp_arith = force +sp_compare = force +sp_before_unnamed_ptr_star = remove +sp_before_byref = remove +sp_after_byref = force +sp_after_angle = force +sp_angle_paren_empty = remove +sp_after_operator = force +sp_after_cast = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_angle_word = force +sp_angle_word = force +indent_columns = 3 +indent_class = true +nl_template_class = remove +nl_template_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-a.cfg new file mode 100644 index 00000000..0a8e4192 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-a.cfg @@ -0,0 +1 @@ +nl_throw_expr = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-f.cfg new file mode 100644 index 00000000..406bd3ae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-f.cfg @@ -0,0 +1 @@ +nl_throw_expr = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-i.cfg new file mode 100644 index 00000000..608f3065 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-i.cfg @@ -0,0 +1 @@ +nl_throw_expr = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-r.cfg new file mode 100644 index 00000000..80267701 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_throw_expr-r.cfg @@ -0,0 +1 @@ +nl_throw_expr = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_try-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_try-a.cfg new file mode 100644 index 00000000..b85fcb08 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_try-a.cfg @@ -0,0 +1,4 @@ +nl_try_brace = force +nl_catch_brace = force +nl_brace_catch = force +nl_after_vbrace_open = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-f.cfg new file mode 100644 index 00000000..1b29c5cd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-f.cfg @@ -0,0 +1 @@ +nl_type_brace_init_lst = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-r.cfg new file mode 100644 index 00000000..ef8d1de1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst-r.cfg @@ -0,0 +1,2 @@ +nl_type_brace_init_lst = remove +sp_after_decltype = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-f.cfg new file mode 100644 index 00000000..4e070657 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-f.cfg @@ -0,0 +1 @@ +nl_type_brace_init_lst_close = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-r.cfg new file mode 100644 index 00000000..d4834efd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_close-r.cfg @@ -0,0 +1 @@ +nl_type_brace_init_lst_close = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-f.cfg new file mode 100644 index 00000000..1e9289e4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-f.cfg @@ -0,0 +1 @@ +nl_type_brace_init_lst_open = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-r.cfg new file mode 100644 index 00000000..7d493c8b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/nl_type_brace_init_lst_open-r.cfg @@ -0,0 +1 @@ +nl_type_brace_init_lst_open = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/no_squeeze_ifdef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/no_squeeze_ifdef.cfg new file mode 100644 index 00000000..af4a3020 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/no_squeeze_ifdef.cfg @@ -0,0 +1,3 @@ +nl_before_return = true +nl_after_return = true +nl_before_cpp_comment = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-force.cfg new file mode 100644 index 00000000..4feac69a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-force.cfg @@ -0,0 +1,9 @@ +# Forces a space after an operator +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_byref = force +sp_after_operator = force +sp_after_operator_sym = force +indent_columns = 3 +indent_class = true +align_right_cmt_span = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-1.cfg new file mode 100644 index 00000000..5be45718 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-1.cfg @@ -0,0 +1,12 @@ +# Removes a space after an operator +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_byref = force +sp_after_operator = remove +sp_after_operator_sym = remove +indent_columns = 3 +indent_class = true +align_var_def_span = 2 +align_var_class_span = 2 +align_right_cmt_span = 2 +align_mix_var_proto = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-2.cfg new file mode 100644 index 00000000..32b7687a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove-align-2.cfg @@ -0,0 +1,13 @@ +# Removes a space after an operator +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_byref = force +sp_after_operator = remove +sp_after_operator_sym = remove +indent_columns = 3 +indent_class = true +align_var_def_span = 2 +align_var_class_span = 2 +align_right_cmt_span = 2 +align_on_operator = true +align_mix_var_proto = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove.cfg new file mode 100644 index 00000000..5424ede9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op-space-remove.cfg @@ -0,0 +1,8 @@ +# Removes a space after an operator +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_byref = force +sp_after_operator = remove +sp_after_operator_sym = remove +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op_sym_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op_sym_empty.cfg new file mode 100644 index 00000000..d9a57ce1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/op_sym_empty.cfg @@ -0,0 +1,4 @@ +sp_after_operator = remove +sp_after_operator_sym = force +sp_after_operator_sym_empty = remove +sp_inside_fparens = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-F.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-F.cfg new file mode 100644 index 00000000..77d9e08c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-F.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_with_tabs = 0 +# to test convert_value +align_keep_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-T.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-T.cfg new file mode 100644 index 00000000..a48c3ebb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/out-668-T.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +indent_with_tabs = 0 +align_keep_tabs = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_assign.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_assign.cfg new file mode 100644 index 00000000..3b9c3700 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_assign.cfg @@ -0,0 +1 @@ +pos_assign = join diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-lf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-lf.cfg new file mode 100644 index 00000000..9f2daab6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-lf.cfg @@ -0,0 +1 @@ +pos_comma = lead_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-tb.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-tb.cfg new file mode 100644 index 00000000..3530982a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_comma-tb.cfg @@ -0,0 +1 @@ +pos_comma = trail_break
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_enum_comma-tf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_enum_comma-tf.cfg new file mode 100644 index 00000000..26cf3dff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_enum_comma-tf.cfg @@ -0,0 +1 @@ +pos_enum_comma = trail_force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-join.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-join.cfg new file mode 100644 index 00000000..69ce2c94 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-join.cfg @@ -0,0 +1,2 @@ +sp_arith = add +pos_shift = join diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-lead.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-lead.cfg new file mode 100644 index 00000000..08e7d5de --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-lead.cfg @@ -0,0 +1,2 @@ +sp_arith = add +pos_shift = lead diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-trail.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-trail.cfg new file mode 100644 index 00000000..a6b45298 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pos_shift-trail.cfg @@ -0,0 +1,2 @@ +sp_arith = add +pos_shift = trail diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp-pragma.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp-pragma.cfg new file mode 100644 index 00000000..e143a69c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp-pragma.cfg @@ -0,0 +1,3 @@ +pp_indent_at_level = true +pp_if_indent_code = true +pp_define_at_level = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_define_at_level-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_define_at_level-1.cfg new file mode 100644 index 00000000..75f6a6a4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_define_at_level-1.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +pp_multiline_define_body_indent = 4 +indent_with_tabs = 0 +indent_class = true +pp_define_at_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_multi_comment.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_multi_comment.cfg new file mode 100644 index 00000000..909e8c2c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/pp_multi_comment.cfg @@ -0,0 +1,7 @@ +sp_after_comma = force +indent_columns = 3 +nl_class_colon = force +align_nl_cont = 1 +align_pp_define_gap = 4 +align_pp_define_span = 3 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-1.cfg new file mode 100644 index 00000000..34a504be --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-1.cfg @@ -0,0 +1,4 @@ +sp_before_ptr_star = remove +sp_after_ptr_star = force +sp_after_ptr_star_func = force +sp_after_ptr_star_qualifier = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-2.cfg new file mode 100644 index 00000000..6af95864 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-2.cfg @@ -0,0 +1,13 @@ +sp_before_ptr_star = force +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = remove +sp_before_byref = force +sp_after_byref = remove +sp_after_ptr_star_trailing = remove +sp_before_ptr_star_trailing = force +sp_after_ptr_star_qualifier = remove + +macro-close NS_SWIFT_NAME +macro-close VIEW_CONTROLLER_MACRO +macro-close MACRO_FUNCTION diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-3.cfg new file mode 100644 index 00000000..de71e0d1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/ptr_star-3.cfg @@ -0,0 +1,9 @@ +sp_before_ptr_star = force +sp_before_ptr_star_func = remove +sp_before_unnamed_ptr_star = remove +sp_between_ptr_star = remove +sp_after_ptr_star = remove +sp_after_ptr_star_func = force +sp_after_ptr_star_trailing = force +sp_before_ptr_star_trailing = remove +sp_after_ptr_star_qualifier = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/qt-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/qt-1.cfg new file mode 100644 index 00000000..b15663f7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/qt-1.cfg @@ -0,0 +1,10 @@ +sp_before_ptr_star = force +sp_inside_fparens = force +indent_columns = 4 +indent_class = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_class_brace = force +nl_after_semicolon = true +nl_before_access_spec = 2 +nl_after_access_spec = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_dont_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_dont_remove.cfg new file mode 100644 index 00000000..303753b3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_dont_remove.cfg @@ -0,0 +1 @@ +mod_remove_empty_return = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_remove.cfg new file mode 100644 index 00000000..3e1bcd1f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/return_remove.cfg @@ -0,0 +1 @@ +mod_remove_empty_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sef.cfg new file mode 100644 index 00000000..ee467d79 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sef.cfg @@ -0,0 +1,16 @@ +newlines = crlf +output_tab_size = 4 +sp_before_ptr_star = remove +sp_after_ptr_star = add +indent_columns = 4 +indent_func_class_param = true +indent_func_ctor_var_param = true +indent_func_param_double = true +nl_constr_init_args = force +nl_constr_colon = add +nl_after_func_body = 3 +pos_constr_comma = trail +pos_constr_colon = lead +code_width = 80 +ls_func_split_full = true +cmt_width = 80
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-f.cfg new file mode 100644 index 00000000..0ffadc4a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-f.cfg @@ -0,0 +1,9 @@ +indent_with_tabs = 0 +sp_after_semi = force +sp_after_semi_for = force +sp_after_semi_for_empty = force +sp_before_semi = force +sp_before_semi_for = force +sp_before_semi_for_empty = force +sp_between_semi_for_empty = force +sp_special_semi = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-i.cfg new file mode 100644 index 00000000..b4260607 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-i.cfg @@ -0,0 +1,9 @@ +indent_with_tabs = 0 +sp_after_semi = ignore +sp_after_semi_for = ignore +sp_after_semi_for_empty = ignore +sp_before_semi = ignore +sp_before_semi_for = ignore +sp_before_semi_for_empty = ignore +sp_between_semi_for_empty = ignore +sp_special_semi = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-r.cfg new file mode 100644 index 00000000..a8465b8c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/semi-r.cfg @@ -0,0 +1,9 @@ +indent_with_tabs = 0 +sp_after_semi = remove +sp_after_semi_for = remove +sp_after_semi_for_empty = remove +sp_before_semi = remove +sp_before_semi_for = remove +sp_before_semi_for_empty = remove +sp_between_semi_for_empty = remove +sp_special_semi = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-f.cfg new file mode 100644 index 00000000..46a15bac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-f.cfg @@ -0,0 +1,2 @@ +sp_after_comma = force +sp_inside_fparen = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-r.cfg new file mode 100644 index 00000000..8f6c0f6d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.2886991-r.cfg @@ -0,0 +1,6 @@ +sp_inside_paren = force +sp_paren_paren = force +sp_inside_sparen = force +sp_after_comma = force +sp_before_ellipsis = remove +sp_inside_fparen = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.3315874.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.3315874.cfg new file mode 100644 index 00000000..99da8446 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf.3315874.cfg @@ -0,0 +1,15 @@ +sp_before_byref = force +sp_before_byref_func = force +sp_before_unnamed_byref = force +sp_after_byref = remove +sp_after_byref_func = remove +sp_after_operator_sym = remove +sp_func_proto_paren = force +sp_inside_fparen = force +nl_max = 2 +align_var_def_amp_style = 1 +align_right_cmt_span = 15 +align_func_proto_span = 100 +align_func_proto_amp_style = 1 +align_func_proto_gap = 5 +align_on_operator = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf574.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf574.cfg new file mode 100644 index 00000000..8fc266f7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sf574.cfg @@ -0,0 +1,8 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 2 +nl_fdef_brace = force +eat_blanks_before_close_brace = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sim.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sim.cfg new file mode 100644 index 00000000..cb954233 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sim.cfg @@ -0,0 +1,13 @@ +sp_ptr_star_func_var = force +sp_before_angle = remove +sp_after_angle = remove +sp_angle_word = remove +indent_columns = 2 +pp_multiline_define_body_indent = 2 +indent_class = true +nl_collapse_empty_body = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_template_class = force +eat_blanks_after_open_brace = true +pos_class_colon = trail diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-1.cfg new file mode 100644 index 00000000..cae5bbb7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-1.cfg @@ -0,0 +1,3 @@ +sp_after_angle = force +sp_inside_fparen = remove +use_sp_after_angle_always = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-2.cfg new file mode 100644 index 00000000..c14d7901 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-2.cfg @@ -0,0 +1,3 @@ +sp_after_angle = force +sp_inside_fparen = remove +use_sp_after_angle_always = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-3.cfg new file mode 100644 index 00000000..d0428a10 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_angle-3.cfg @@ -0,0 +1,3 @@ +sp_after_angle = ignore +sp_inside_fparen = remove +use_sp_after_angle_always = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-f.cfg new file mode 100644 index 00000000..d92ffb0d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-f.cfg @@ -0,0 +1 @@ +sp_after_cast = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-r.cfg new file mode 100644 index 00000000..130602eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_cast-r.cfg @@ -0,0 +1 @@ +sp_after_cast = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_constr_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_constr_colon.cfg new file mode 100644 index 00000000..aa1189dd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_constr_colon.cfg @@ -0,0 +1,9 @@ +sp_after_constr_colon = remove +indent_columns = 2 +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init = 2 +nl_collapse_empty_body = true +nl_constr_init_args = remove +nl_func_def_args = force +pos_constr_comma = trail_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-f.cfg new file mode 100644 index 00000000..077c5f94 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-f.cfg @@ -0,0 +1,3 @@ +indent_off_after_return = true +indent_off_after_return_new = false +sp_after_decltype = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-r.cfg new file mode 100644 index 00000000..64a318a0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_decltype-r.cfg @@ -0,0 +1 @@ +sp_after_decltype = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ellipsis-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ellipsis-f.cfg new file mode 100644 index 00000000..e30e169a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ellipsis-f.cfg @@ -0,0 +1 @@ +sp_after_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ptr_star_qualifier-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ptr_star_qualifier-f.cfg new file mode 100644 index 00000000..7e26046f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_ptr_star_qualifier-f.cfg @@ -0,0 +1 @@ +sp_after_ptr_star_qualifier = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type-i.cfg new file mode 100644 index 00000000..bd45658a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type-i.cfg @@ -0,0 +1 @@ +sp_after_type = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-f.cfg new file mode 100644 index 00000000..d3b744b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-f.cfg @@ -0,0 +1 @@ +sp_after_type_brace_init_lst_open = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-r.cfg new file mode 100644 index 00000000..f370b82e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_after_type_brace_init_lst_open-r.cfg @@ -0,0 +1 @@ +sp_after_type_brace_init_lst_open = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_colon.cfg new file mode 100644 index 00000000..e247bbbe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_colon.cfg @@ -0,0 +1,2 @@ +# Add or remove space between '<>' and ':' +sp_angle_colon = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren-f.cfg new file mode 100644 index 00000000..0b3d2f92 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren-f.cfg @@ -0,0 +1 @@ +sp_angle_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren_empty.cfg new file mode 100644 index 00000000..1e3c592b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_angle_paren_empty.cfg @@ -0,0 +1,2 @@ +sp_angle_paren = force +sp_angle_paren_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith-a.cfg new file mode 100644 index 00000000..4d60daa9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith-a.cfg @@ -0,0 +1 @@ +sp_arith = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-f.cfg new file mode 100644 index 00000000..8e6f0585 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-f.cfg @@ -0,0 +1,3 @@ +# sp_arith_additive overwrites sp_arith +sp_arith = remove +sp_arith_additive = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-r.cfg new file mode 100644 index 00000000..e01e86f7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_arith_additive-r.cfg @@ -0,0 +1,3 @@ +# sp_arith_additive overwrites sp_arith +sp_arith = force +sp_arith_additive = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_assign_default.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_assign_default.cfg new file mode 100644 index 00000000..29411834 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_assign_default.cfg @@ -0,0 +1 @@ +sp_assign_default = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_balance_nested_parens.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_balance_nested_parens.cfg new file mode 100644 index 00000000..8e9dbb6f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_balance_nested_parens.cfg @@ -0,0 +1,2 @@ +sp_balance_nested_parens = true +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_byref_func.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_byref_func.cfg new file mode 100644 index 00000000..6f5e2783 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_byref_func.cfg @@ -0,0 +1,6 @@ +# Places the byref as follows: "int &foo" +indent_columns = 3 +indent_class = true + +# Add or remove space before a reference sign '&', if followed by a func proto/def. +sp_before_byref_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_case_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_case_colon.cfg new file mode 100644 index 00000000..d0bef793 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_case_colon.cfg @@ -0,0 +1 @@ +sp_before_case_colon = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_comma-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_comma-f.cfg new file mode 100644 index 00000000..dc25e313 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_comma-f.cfg @@ -0,0 +1 @@ +sp_before_comma = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_constr_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_constr_colon.cfg new file mode 100644 index 00000000..9d0ec317 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_constr_colon.cfg @@ -0,0 +1,10 @@ +sp_before_constr_colon = remove +indent_columns = 2 +indent_class_colon = true +indent_constr_colon = true +indent_ctor_init = 2 +nl_collapse_empty_body = true +nl_constr_init_args = remove +nl_func_def_args = remove +pos_constr_comma = trail_force +pos_constr_colon = trail_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-f.cfg new file mode 100644 index 00000000..ed701425 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-f.cfg @@ -0,0 +1,7 @@ +sp_before_ellipsis = force + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_before_byref = force +sp_byref_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-r.cfg new file mode 100644 index 00000000..e2163788 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ellipsis-r.cfg @@ -0,0 +1,7 @@ +sp_before_ellipsis = remove + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_before_byref = force +sp_byref_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-a.cfg new file mode 100644 index 00000000..28d19cfe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-a.cfg @@ -0,0 +1 @@ +sp_before_global_scope_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-f.cfg new file mode 100644 index 00000000..9df29273 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_before_global_scope_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-i.cfg new file mode 100644 index 00000000..5afb1141 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-i.cfg @@ -0,0 +1 @@ +sp_before_global_scope_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-r.cfg new file mode 100644 index 00000000..eac5b355 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_global_scope_ptr_star-r.cfg @@ -0,0 +1 @@ +sp_before_global_scope_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-a.cfg new file mode 100644 index 00000000..f40f3a62 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-a.cfg @@ -0,0 +1 @@ +sp_before_operator_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-f.cfg new file mode 100644 index 00000000..8b8e8332 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_before_operator_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-i.cfg new file mode 100644 index 00000000..50a71231 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-i.cfg @@ -0,0 +1 @@ +sp_before_operator_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-r.cfg new file mode 100644 index 00000000..da110551 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_operator_ptr_star-r.cfg @@ -0,0 +1 @@ +sp_before_operator_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-f.cfg new file mode 100644 index 00000000..7653ec0b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_before_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-r.cfg new file mode 100644 index 00000000..55f99c73 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_ptr_star-r.cfg @@ -0,0 +1,3 @@ +# https://github.com/uncrustify/uncrustify/issues/1112#issuecomment-295247085 +# CT_STAR -> CT_PTR_TYPE in: CT_PRIVATE_COLON CT_DC_MEMBER CT_WORD CT_STAR +sp_before_ptr_star = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-a.cfg new file mode 100644 index 00000000..045ee52d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-a.cfg @@ -0,0 +1 @@ +sp_before_qualifier_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-f.cfg new file mode 100644 index 00000000..4996ffc2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_before_qualifier_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-i.cfg new file mode 100644 index 00000000..ddb4d122 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-i.cfg @@ -0,0 +1 @@ +sp_before_qualifier_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-r.cfg new file mode 100644 index 00000000..67899aaa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_qualifier_ptr_star-r.cfg @@ -0,0 +1 @@ +sp_before_qualifier_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-a.cfg new file mode 100644 index 00000000..22f4e1c0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-a.cfg @@ -0,0 +1 @@ +sp_before_scope_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-f.cfg new file mode 100644 index 00000000..e47dce8d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_before_scope_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-i.cfg new file mode 100644 index 00000000..f86b81a7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-i.cfg @@ -0,0 +1 @@ +sp_before_scope_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-r.cfg new file mode 100644 index 00000000..7d90d59f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_scope_ptr_star-r.cfg @@ -0,0 +1 @@ +sp_before_scope_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-a.cfg new file mode 100644 index 00000000..834fd302 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-a.cfg @@ -0,0 +1,7 @@ +sp_before_tr_cmt = add +sp_num_before_tr_cmt = 2 +sp_before_emb_cmt = add +sp_num_before_emb_cmt = 2 +indent_columns = 2 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-f.cfg new file mode 100644 index 00000000..54720c71 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_tr_emb_cmt-f.cfg @@ -0,0 +1,7 @@ +sp_before_tr_cmt = force +sp_num_before_tr_cmt = 2 +sp_before_emb_cmt = force +sp_num_before_emb_cmt = 2 +indent_columns = 2 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-f.cfg new file mode 100644 index 00000000..3dda0281 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-f.cfg @@ -0,0 +1 @@ +sp_before_type_brace_init_lst_close = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-r.cfg new file mode 100644 index 00000000..5fb0bf36 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_before_type_brace_init_lst_close-r.cfg @@ -0,0 +1 @@ +sp_before_type_brace_init_lst_close = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-a.cfg new file mode 100644 index 00000000..9e631229 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-a.cfg @@ -0,0 +1,13 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_between_ptr_ref = add +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_before_square = force +indent_columns = 2 +nl_if_brace = remove +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-f.cfg new file mode 100644 index 00000000..fe49b810 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-f.cfg @@ -0,0 +1,13 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_between_ptr_ref = force +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_before_square = force +indent_columns = 2 +nl_if_brace = remove +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-i.cfg new file mode 100644 index 00000000..b4cf7d41 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-i.cfg @@ -0,0 +1,13 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_between_ptr_ref = ignore +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_before_square = force +indent_columns = 2 +nl_if_brace = remove +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-r.cfg new file mode 100644 index 00000000..aa0644cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_between_ptr_ref-r.cfg @@ -0,0 +1,13 @@ +sp_sparen_brace = add +sp_before_ptr_star = remove +sp_between_ptr_ref = remove +sp_before_byref = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren = remove +sp_angle_paren_empty = remove +sp_angle_word = force +sp_before_square = force +indent_columns = 2 +nl_if_brace = remove +nl_after_func_proto_group = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-f.cfg new file mode 100644 index 00000000..b5a9e09f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-f.cfg @@ -0,0 +1 @@ +sp_bool = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-i.cfg new file mode 100644 index 00000000..ae79b0a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-i.cfg @@ -0,0 +1 @@ +sp_bool = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-r.cfg new file mode 100644 index 00000000..3baee576 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_bool-r.cfg @@ -0,0 +1 @@ +sp_bool = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-f.cfg new file mode 100644 index 00000000..090c2858 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-f.cfg @@ -0,0 +1 @@ +sp_brace_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-r.cfg new file mode 100644 index 00000000..c652b3cd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_brace-r.cfg @@ -0,0 +1 @@ +sp_brace_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_catch.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_catch.cfg new file mode 100644 index 00000000..49d1490a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_brace_catch.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +sp_brace_catch = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-a.cfg new file mode 100644 index 00000000..f2c79e1a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-a.cfg @@ -0,0 +1 @@ +sp_byref_paren = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-f.cfg new file mode 100644 index 00000000..8e7a167c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-f.cfg @@ -0,0 +1 @@ +sp_byref_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-i.cfg new file mode 100644 index 00000000..1ba244a9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-i.cfg @@ -0,0 +1 @@ +sp_byref_paren = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-r.cfg new file mode 100644 index 00000000..fe59915e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_byref_paren-r.cfg @@ -0,0 +1 @@ +sp_byref_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_catch_brace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_catch_brace.cfg new file mode 100644 index 00000000..7086e77b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_catch_brace.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = force +sp_catch_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt.cfg new file mode 100644 index 00000000..fb7f6ef1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = add +sp_cmt_cpp_doxygen = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-f.cfg new file mode 100644 index 00000000..1c626401 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-f.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = remove +sp_cmt_cpp_region = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-r.cfg new file mode 100644 index 00000000..67a0ff11 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cmt_cpp_region-r.cfg @@ -0,0 +1,2 @@ +sp_cmt_cpp_start = force +sp_cmt_cpp_region = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-f.cfg new file mode 100644 index 00000000..dd6f0faf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-f.cfg @@ -0,0 +1,8 @@ +#Config file +sp_cond_question_before = force +sp_cond_question_after = force + +sp_cond_colon_before = force +sp_cond_colon_after = force + +sp_cond_ternary_short = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-i.cfg new file mode 100644 index 00000000..d671d519 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-i.cfg @@ -0,0 +1,8 @@ +#Config file +sp_cond_question_before = ignore +sp_cond_question_after = ignore + +sp_cond_colon_before = ignore +sp_cond_colon_after = ignore + +sp_cond_ternary_short = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-ir.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-ir.cfg new file mode 100644 index 00000000..4a557554 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-ir.cfg @@ -0,0 +1,11 @@ +#Config file +sp_cond_question_before = ignore +sp_cond_question_after = ignore + +sp_cond_colon_before = ignore +sp_cond_colon_after = ignore + +sp_cond_colon = remove +sp_cond_question = remove + +sp_cond_ternary_short = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-r.cfg new file mode 100644 index 00000000..0d013cf7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cond_question-r.cfg @@ -0,0 +1,8 @@ +#Config file +sp_cond_question_before = remove +sp_cond_question_after = remove + +sp_cond_colon_before = remove +sp_cond_colon_after = remove + +sp_cond_ternary_short = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_constr_colon-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_constr_colon-i.cfg new file mode 100644 index 00000000..c5cd823a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_constr_colon-i.cfg @@ -0,0 +1,3 @@ +indent_class = true +sp_before_constr_colon = ignore +sp_after_constr_colon = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cparen_oparen-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cparen_oparen-r.cfg new file mode 100644 index 00000000..f584c02d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cparen_oparen-r.cfg @@ -0,0 +1,3 @@ +sp_cparen_oparen = remove +indent_with_tabs = 0 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-f.cfg new file mode 100644 index 00000000..f45270e7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-f.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_square_paren = force +sp_cpp_lambda_square_brace = force +sp_cpp_lambda_fparen = force +nl_cpp_lambda_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-i.cfg new file mode 100644 index 00000000..cda81b02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-i.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_square_paren = ignore +sp_cpp_lambda_square_brace = ignore +sp_cpp_lambda_fparen = ignore +nl_cpp_lambda_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-r.cfg new file mode 100644 index 00000000..c64da54c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_fparen-r.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = remove +sp_cpp_lambda_fparen = remove +nl_cpp_lambda_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-f.cfg new file mode 100644 index 00000000..f632d9d6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-f.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_assign = remove +sp_cpp_lambda_paren_brace = force +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-i.cfg new file mode 100644 index 00000000..9c8e2748 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-i.cfg @@ -0,0 +1 @@ +sp_cpp_lambda_paren_brace = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-r.cfg new file mode 100644 index 00000000..492af499 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_paren_brace-r.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_assign = remove +sp_cpp_lambda_paren_brace = remove +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-f.cfg new file mode 100644 index 00000000..cc067763 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-f.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_assign = remove +sp_cpp_lambda_paren_brace = remove +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-i.cfg new file mode 100644 index 00000000..a035f41e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-i.cfg @@ -0,0 +1 @@ +sp_cpp_lambda_square_brace = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-r.cfg new file mode 100644 index 00000000..cf703b2f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_brace-r.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_assign = remove +sp_cpp_lambda_paren_brace = remove +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-f.cfg new file mode 100644 index 00000000..55ac955d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-f.cfg @@ -0,0 +1,4 @@ +sp_cpp_lambda_assign = remove +sp_cpp_lambda_paren_brace = force +sp_cpp_lambda_square_paren = force +sp_cpp_lambda_square_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-i.cfg new file mode 100644 index 00000000..e8525fe5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-i.cfg @@ -0,0 +1,2 @@ +sp_cpp_lambda_square_paren = ignore +sp_type_brace_init_lst = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-r.cfg new file mode 100644 index 00000000..bcb937c3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_cpp_lambda_square_paren-r.cfg @@ -0,0 +1,5 @@ +sp_cpp_lambda_assign = force +sp_cpp_lambda_paren_brace = force +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force +sp_type_brace_init_lst = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_dc.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_dc.cfg new file mode 100644 index 00000000..c9b14cc2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_dc.cfg @@ -0,0 +1,2 @@ +sp_before_dc = remove +sp_after_dc = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-f.cfg new file mode 100644 index 00000000..3636cd02 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-f.cfg @@ -0,0 +1,2 @@ +sp_decltype_paren = force +sp_after_type = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-r.cfg new file mode 100644 index 00000000..b11add96 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_decltype_paren-r.cfg @@ -0,0 +1,2 @@ +sp_decltype_paren = remove +sp_after_type = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_endif_cmt.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_endif_cmt.cfg new file mode 100644 index 00000000..13ddf4fe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_endif_cmt.cfg @@ -0,0 +1 @@ +sp_endif_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-f.cfg new file mode 100644 index 00000000..37928822 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-f.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +sp_enum_after_assign = ignore +sp_enum_before_assign = ignore +sp_enum_assign = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-i.cfg new file mode 100644 index 00000000..c30b6525 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_assign-i.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 0 +sp_enum_after_assign = ignore +sp_enum_before_assign = ignore +sp_enum_assign = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-i.cfg new file mode 100644 index 00000000..d154830c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-i.cfg @@ -0,0 +1 @@ +sp_enum_colon = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-r.cfg new file mode 100644 index 00000000..87f44474 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon-r.cfg @@ -0,0 +1 @@ +sp_enum_colon = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon.cfg new file mode 100644 index 00000000..27716eca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_enum_colon.cfg @@ -0,0 +1 @@ +sp_enum_colon = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_empty.cfg new file mode 100644 index 00000000..3705267a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_empty.cfg @@ -0,0 +1,13 @@ +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_comma = force +sp_func_call_paren = force +sp_func_call_paren_empty = remove +sp_return_paren = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_fdef_brace = add +align_func_params = true +align_var_def_star_style = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_paren.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_paren.cfg new file mode 100644 index 00000000..c5f8927b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_call_paren.cfg @@ -0,0 +1,5 @@ +macro-open BEGIN_MESSAGE_MAP +macro-close END_MESSAGE_MAP +sp_after_comma = force +indent_columns = 3 +sp_func_call_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_class_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_class_empty.cfg new file mode 100644 index 00000000..33c1faba --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_class_empty.cfg @@ -0,0 +1,14 @@ +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_comma = force +sp_func_call_paren = force +sp_func_call_paren_empty = remove +sp_func_class_paren_empty = force +sp_return_paren = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_fdef_brace = add +align_func_params = true +align_var_def_star_style = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_def_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_def_empty.cfg new file mode 100644 index 00000000..56a18ecd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_def_empty.cfg @@ -0,0 +1,14 @@ +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_comma = force +sp_func_def_paren_empty = force +sp_func_call_paren = force +sp_func_call_paren_empty = remove +sp_return_paren = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_fdef_brace = add +align_func_params = true +align_var_def_star_style = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_proto_empty.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_proto_empty.cfg new file mode 100644 index 00000000..2054965d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_func_proto_empty.cfg @@ -0,0 +1,14 @@ +sp_before_byref = remove +sp_before_byref_func = remove +sp_after_comma = force +sp_func_proto_paren_empty = force +sp_func_call_paren = force +sp_func_call_paren_empty = remove +sp_return_paren = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +nl_fdef_brace = add +align_func_params = true +align_var_def_star_style = 1 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_empty-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_empty-r.cfg new file mode 100644 index 00000000..f7b1b239 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_empty-r.cfg @@ -0,0 +1 @@ +sp_inside_braces_empty = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-f.cfg new file mode 100644 index 00000000..bd854828 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-f.cfg @@ -0,0 +1 @@ +sp_inside_braces_enum = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-i.cfg new file mode 100644 index 00000000..a56a9ecb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-i.cfg @@ -0,0 +1 @@ +sp_inside_braces_enum = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-r.cfg new file mode 100644 index 00000000..ca8a03a0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_braces_enum-r.cfg @@ -0,0 +1 @@ +sp_inside_braces_enum = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparen-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparen-r.cfg new file mode 100644 index 00000000..98f867f4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparen-r.cfg @@ -0,0 +1 @@ +sp_inside_fparen = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparens-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparens-f.cfg new file mode 100644 index 00000000..b56756d1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_fparens-f.cfg @@ -0,0 +1 @@ +sp_inside_fparens = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-f.cfg new file mode 100644 index 00000000..72db534b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-f.cfg @@ -0,0 +1,2 @@ +sp_brace_brace = ignore +sp_inside_type_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iif.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iif.cfg new file mode 100644 index 00000000..c42436bf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iif.cfg @@ -0,0 +1,3 @@ +sp_brace_brace = ignore +sp_before_type_brace_init_lst_close = ignore +sp_inside_type_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iii.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iii.cfg new file mode 100644 index 00000000..e352ee6c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-iii.cfg @@ -0,0 +1,3 @@ +sp_brace_brace = ignore +sp_before_type_brace_init_lst_close = ignore +sp_inside_type_brace_init_lst = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-irf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-irf.cfg new file mode 100644 index 00000000..ed72df5e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-irf.cfg @@ -0,0 +1,3 @@ +sp_brace_brace = ignore +sp_before_type_brace_init_lst_close = remove +sp_inside_type_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-r.cfg new file mode 100644 index 00000000..b0881eaf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-r.cfg @@ -0,0 +1 @@ +sp_inside_type_brace_init_lst = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-rf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-rf.cfg new file mode 100644 index 00000000..cafaab52 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_inside_type_brace_init_lst-rf.cfg @@ -0,0 +1,2 @@ +sp_brace_brace = remove +sp_inside_type_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_not_not.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_not_not.cfg new file mode 100644 index 00000000..1c0335a4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_not_not.cfg @@ -0,0 +1,2 @@ +sp_not = add +sp_not_not = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-f.cfg new file mode 100644 index 00000000..8f9206ab --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-f.cfg @@ -0,0 +1 @@ +sp_paren_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-i.cfg new file mode 100644 index 00000000..f3d0f22d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-i.cfg @@ -0,0 +1 @@ +sp_paren_brace = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-r.cfg new file mode 100644 index 00000000..7e2fce85 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_brace-r.cfg @@ -0,0 +1 @@ +sp_paren_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-f.cfg new file mode 100644 index 00000000..3cc88128 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-f.cfg @@ -0,0 +1,8 @@ +# Add or remove space between ')' and '...'. +sp_paren_ellipsis = force + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_before_byref = force +sp_byref_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-i.cfg new file mode 100644 index 00000000..093de258 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-i.cfg @@ -0,0 +1,8 @@ +# Add or remove space between ')' and '...'. +sp_paren_ellipsis = ignore + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_before_byref = force +sp_byref_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-r.cfg new file mode 100644 index 00000000..5971dfa8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_ellipsis-r.cfg @@ -0,0 +1,5 @@ +# Add or remove space between ')' and '...'. +sp_paren_ellipsis = remove + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_noexcept-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_noexcept-f.cfg new file mode 100644 index 00000000..35e76a33 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_noexcept-f.cfg @@ -0,0 +1 @@ +sp_paren_noexcept = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_qualifier-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_qualifier-f.cfg new file mode 100644 index 00000000..f91f2aee --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_paren_qualifier-f.cfg @@ -0,0 +1 @@ +sp_paren_qualifier = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-a.cfg new file mode 100644 index 00000000..6ea5e8fb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-a.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_func = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-f.cfg new file mode 100644 index 00000000..223ae97c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-f.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_func = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-i.cfg new file mode 100644 index 00000000..e0368625 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-i.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_func = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-r.cfg new file mode 100644 index 00000000..6b2e7c0f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_func-r.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-a.cfg new file mode 100644 index 00000000..15b0cf87 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-a.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_trailing = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-f.cfg new file mode 100644 index 00000000..70a6256b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-f.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_trailing = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-i.cfg new file mode 100644 index 00000000..51588055 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-i.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_trailing = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-r.cfg new file mode 100644 index 00000000..4c74d102 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_ptr_star_trailing-r.cfg @@ -0,0 +1 @@ +sp_qualifier_ptr_star_trailing = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-a.cfg new file mode 100644 index 00000000..5e58bed1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-a.cfg @@ -0,0 +1 @@ +sp_qualifier_unnamed_ptr_star = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-f.cfg new file mode 100644 index 00000000..513ab80b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-f.cfg @@ -0,0 +1 @@ +sp_qualifier_unnamed_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-i.cfg new file mode 100644 index 00000000..730348ec --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-i.cfg @@ -0,0 +1 @@ +sp_qualifier_unnamed_ptr_star = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-r.cfg new file mode 100644 index 00000000..8ca21fea --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_qualifier_unnamed_ptr_star-r.cfg @@ -0,0 +1 @@ +sp_qualifier_unnamed_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-a.cfg new file mode 100644 index 00000000..16e78850 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-a.cfg @@ -0,0 +1,3 @@ +sp_return = add +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-f.cfg new file mode 100644 index 00000000..b37d9b03 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-f.cfg @@ -0,0 +1,3 @@ +sp_return = force +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-i.cfg new file mode 100644 index 00000000..80d2d26d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-i.cfg @@ -0,0 +1,3 @@ +sp_return = ignore +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-r.cfg new file mode 100644 index 00000000..b3d64b3f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return-r.cfg @@ -0,0 +1,3 @@ +sp_return = remove +sp_before_emb_cmt = ignore +sp_after_emb_cmt = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-f.cfg new file mode 100644 index 00000000..bdea1673 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-f.cfg @@ -0,0 +1 @@ +sp_return_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-r.cfg new file mode 100644 index 00000000..a2541527 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_brace-r.cfg @@ -0,0 +1 @@ +sp_return_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-f.cfg new file mode 100644 index 00000000..11637ca1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-f.cfg @@ -0,0 +1 @@ +sp_return_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-r.cfg new file mode 100644 index 00000000..8fbef0b8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_return_paren-r.cfg @@ -0,0 +1 @@ +sp_return_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-f.cfg new file mode 100644 index 00000000..853db73a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-f.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis = force + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-i.cfg new file mode 100644 index 00000000..48871cc9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-i.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis = ignore + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-r.cfg new file mode 100644 index 00000000..7d1c2068 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis-r.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis = remove + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-f.cfg new file mode 100644 index 00000000..46dfb49d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-f.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis_paren = force + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-i.cfg new file mode 100644 index 00000000..2b7d0b44 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-i.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis_paren = ignore + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-r.cfg new file mode 100644 index 00000000..27953868 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_sizeof_ellipsis_paren-r.cfg @@ -0,0 +1,4 @@ +sp_sizeof_ellipsis_paren = remove + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_skip_vbrace_tokens.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_skip_vbrace_tokens.cfg new file mode 100644 index 00000000..d5ce739d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_skip_vbrace_tokens.cfg @@ -0,0 +1,4 @@ +# test for issue #546 +input_tab_size = 4 +sp_skip_vbrace_tokens = true +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-f.cfg new file mode 100644 index 00000000..611cd750 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-f.cfg @@ -0,0 +1 @@ +sp_throw_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-r.cfg new file mode 100644 index 00000000..893c8782 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_throw_paren-r.cfg @@ -0,0 +1 @@ +sp_throw_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-f.cfg new file mode 100644 index 00000000..9e1fe074 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-f.cfg @@ -0,0 +1 @@ +sp_trailing_return = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-r.cfg new file mode 100644 index 00000000..b26929ba --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return-r.cfg @@ -0,0 +1 @@ +sp_trailing_return = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-left.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-left.cfg new file mode 100644 index 00000000..071f30d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-left.cfg @@ -0,0 +1,7 @@ +sp_assign_default = force +sp_trailing_return = force + +sp_before_byref = remove +sp_after_byref = force + +sp_before_ptr_star_trailing = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-right.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-right.cfg new file mode 100644 index 00000000..f5078788 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_trailing_return_byref_ptr-right.cfg @@ -0,0 +1,7 @@ +sp_assign_default = force +sp_trailing_return = force + +sp_before_byref = force +sp_after_byref = remove + +sp_before_ptr_star_trailing = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-f.cfg new file mode 100644 index 00000000..2f0d5258 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-f.cfg @@ -0,0 +1,2 @@ +sp_type_brace_init_lst = force +sp_word_brace_init_lst = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-r.cfg new file mode 100644 index 00000000..199dc1eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_brace_init_lst-r.cfg @@ -0,0 +1,2 @@ +sp_type_brace_init_lst= remove +sp_word_brace_init_lst= remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-f.cfg new file mode 100644 index 00000000..888a68b0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-f.cfg @@ -0,0 +1,9 @@ +sp_type_ellipsis = force + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_parameter_pack_ellipsis = force +sp_before_byref = force +sp_byref_ellipsis = force +sp_ptr_type_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-i.cfg new file mode 100644 index 00000000..f6cb6d0c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-i.cfg @@ -0,0 +1,4 @@ +sp_type_ellipsis = ignore + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-r.cfg new file mode 100644 index 00000000..bf831e30 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_ellipsis-r.cfg @@ -0,0 +1,9 @@ +sp_type_ellipsis = remove + +# Add or remove space between '...' and a parameter pack. +sp_ellipsis_parameter_pack = force + +sp_parameter_pack_ellipsis = force +sp_before_byref = force +sp_byref_ellipsis = force +sp_ptr_type_ellipsis = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-1.cfg new file mode 100644 index 00000000..010876e0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-1.cfg @@ -0,0 +1,3 @@ +sp_after_byref_func = add +sp_after_ptr_star_func = add +sp_type_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-2.cfg new file mode 100644 index 00000000..de86218b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-2.cfg @@ -0,0 +1,3 @@ +sp_after_byref = add +sp_after_ptr_star = add +sp_type_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-f.cfg new file mode 100644 index 00000000..e8e5f08a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-f.cfg @@ -0,0 +1,3 @@ +sp_type_func = force +sp_after_byref_func = force +sp_after_ptr_star_func = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-r.cfg new file mode 100644 index 00000000..62324f98 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_type_func-r.cfg @@ -0,0 +1,3 @@ +sp_type_func = remove +sp_after_byref_func = remove +sp_after_ptr_star_func = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_force.cfg new file mode 100644 index 00000000..d9c53345 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_force.cfg @@ -0,0 +1,5 @@ +indent_with_tabs = 0 +sp_word_brace_init_lst = force +sp_word_brace_ns = remove +sp_type_brace_init_lst = remove +sp_inside_braces = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_remove.cfg new file mode 100644 index 00000000..3fd1fa26 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/sp_word_brace_remove.cfg @@ -0,0 +1,3 @@ +indent_with_tabs = 0 +sp_word_brace_init_lst = remove +sp_word_brace_ns = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/space_indent_class-t_columns-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/space_indent_class-t_columns-4.cfg new file mode 100644 index 00000000..a454237c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/space_indent_class-t_columns-4.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef.cfg new file mode 100644 index 00000000..fa3f980c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef.cfg @@ -0,0 +1,4 @@ +nl_before_return = true +nl_after_return = true +nl_before_cpp_comment = 2 +nl_squeeze_ifdef = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef_top.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef_top.cfg new file mode 100644 index 00000000..6b45f49a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/squeeze_ifdef_top.cfg @@ -0,0 +1,5 @@ +nl_before_cpp_comment = 2 +nl_after_func_proto = 2 +nl_after_func_proto_group = 2 +nl_squeeze_ifdef = true +nl_squeeze_ifdef_top_level = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-1.cfg new file mode 100644 index 00000000..6c9f5806 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-1.cfg @@ -0,0 +1,12 @@ +# Places the byref as follows: "int &foo" +sp_after_ptr_star = remove +sp_after_byref = remove +indent_columns = 3 +align_var_def_span = 2 +align_var_def_star_style = 1 +align_var_def_amp_style = 1 +align_var_struct_span = 2 +align_typedef_gap = 3 +align_typedef_span = 2 +align_typedef_star_style = 1 +align_typedef_amp_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-2.cfg new file mode 100644 index 00000000..dc1f45fc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/star_pos-2.cfg @@ -0,0 +1,12 @@ +# Places the byref as follows: "int &foo" +sp_after_ptr_star = remove +sp_after_byref = remove +indent_columns = 3 +align_var_def_span = 2 +align_var_def_star_style = 2 +align_var_def_amp_style = 2 +align_var_struct_span = 2 +align_typedef_gap = 3 +align_typedef_span = 2 +align_typedef_star_style = 2 +align_typedef_amp_style = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/string_replace_tab_chars-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/string_replace_tab_chars-t.cfg new file mode 100644 index 00000000..9e36729d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/string_replace_tab_chars-t.cfg @@ -0,0 +1 @@ +string_replace_tab_chars = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/tab-0-11.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/tab-0-11.cfg new file mode 100644 index 00000000..96f745a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/tab-0-11.cfg @@ -0,0 +1,2 @@ +indent_columns = 11 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-force.cfg new file mode 100644 index 00000000..852277ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-force.cfg @@ -0,0 +1,20 @@ +# Forces a newline between template '>' and class +tok_split_gte = true +sp_arith = force +sp_compare = remove # just to show a difference +sp_before_byref = remove +sp_after_byref = force +sp_template_angle = remove +sp_before_angle = force +sp_inside_angle = force +sp_inside_angle_empty = force +sp_after_angle = force +sp_angle_paren = force +sp_angle_paren_empty = force +sp_after_operator = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_angle_word = force +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-ignore.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-ignore.cfg new file mode 100644 index 00000000..b5bbb248 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-ignore.cfg @@ -0,0 +1,4 @@ +sp_template_angle = ignore +sp_before_angle = ignore +sp_inside_angle = ignore +sp_after_angle = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-remove.cfg new file mode 100644 index 00000000..5e20f3b5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/template_sp-remove.cfg @@ -0,0 +1,20 @@ +tok_split_gte = true +sp_arith = force +sp_compare = force +sp_before_byref = remove +sp_after_byref = force +sp_inside_angle_empty = remove +sp_angle_paren_empty = remove +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_func_call_paren = remove +sp_cparen_oparen = remove +sp_angle_word = remove +indent_columns = 3 +indent_class = true + +sp_template_angle = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_after_angle = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-i.cfg new file mode 100644 index 00000000..25622a57 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-i.cfg @@ -0,0 +1,20 @@ +# Forces a newline between template '>' and class +tok_split_gte = true +sp_arith = force +sp_compare = remove # just to show a difference +sp_before_byref = remove +sp_after_byref = force +sp_template_angle = remove +sp_before_angle = force +sp_inside_angle = force +sp_inside_angle_empty = force +sp_after_angle = force +sp_angle_paren = ignore +sp_angle_paren_empty = force +sp_after_operator = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_angle_word = force +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-r.cfg new file mode 100644 index 00000000..7efd2a7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/templates-r.cfg @@ -0,0 +1,20 @@ +# Forces a newline between template '>' and class +tok_split_gte = true +sp_arith = force +sp_compare = remove # just to show a difference +sp_before_byref = remove +sp_after_byref = force +sp_template_angle = remove +sp_before_angle = force +sp_inside_angle = force +sp_inside_angle_empty = force +sp_after_angle = force +sp_angle_paren = remove +sp_angle_paren_empty = force +sp_after_operator = force +sp_inside_braces_struct = force +sp_inside_braces = force +sp_func_proto_paren = remove +sp_angle_word = force +indent_columns = 3 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt.cfg new file mode 100644 index 00000000..08ef987e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt.cfg @@ -0,0 +1 @@ +disable_processing_cmt = " **ABC**"
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt2.cfg new file mode 100644 index 00000000..0b9be532 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt2.cfg @@ -0,0 +1 @@ +enable_processing_cmt = " ??DEF??"
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt3.cfg new file mode 100644 index 00000000..d7f1f675 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt3.cfg @@ -0,0 +1,8 @@ +cmt_indent_multi = true +cmt_reflow_mode = 2 +cmt_sp_after_star_cont = 1 +cmt_star_cont=true +cmt_width = 70 +disable_processing_cmt="\\\\verbatim|[ \t]*(?:\\*INDENT-OFF\\*|\\*\\*ABC\\*\\*)" +enable_processing_cmt="\\\\endverbatim|[ \t]*(?:\\*INDENT-ON\\*|\\?\\?DEF\\?\\?)" +processing_cmt_as_regex=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt4.cfg new file mode 100644 index 00000000..ccd7bb03 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/toggle_processing_cmt4.cfg @@ -0,0 +1,6 @@ +cmt_sp_after_star_cont = 1 +cmt_width = 70 +disable_processing_cmt="\\\\verbatim|[ \t]*(?:\\*INDENT-OFF\\*|\\*\\*ABC\\*\\*)" +enable_processing_cmt="\\\\endverbatim|[ \t]*(?:\\*INDENT-ON\\*|\\?\\?DEF\\?\\?)" +processing_cmt_as_regex=true + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/using-alias-in-define.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/using-alias-in-define.cfg new file mode 100644 index 00000000..6b0b5e8f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/using-alias-in-define.cfg @@ -0,0 +1 @@ +sp_addr = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-1.cfg new file mode 100644 index 00000000..14d063e4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-1.cfg @@ -0,0 +1 @@ +nl_var_def_blk_end_func_top = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-2.cfg new file mode 100644 index 00000000..f2181cae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-2.cfg @@ -0,0 +1 @@ +nl_var_def_blk_start = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-3.cfg new file mode 100644 index 00000000..aa5db84e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-3.cfg @@ -0,0 +1 @@ +nl_var_def_blk_end = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-4.cfg new file mode 100644 index 00000000..9e4414e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-4.cfg @@ -0,0 +1,2 @@ +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_start = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-5.cfg new file mode 100644 index 00000000..374da8c9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-5.cfg @@ -0,0 +1,2 @@ +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_end = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-6.cfg new file mode 100644 index 00000000..96b054a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-6.cfg @@ -0,0 +1,2 @@ +nl_var_def_blk_start = 2 +nl_var_def_blk_end = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-7.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-7.cfg new file mode 100644 index 00000000..22bb40b2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_blks-7.cfg @@ -0,0 +1,3 @@ +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_start = 2 +nl_var_def_blk_end = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_gap.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_gap.cfg new file mode 100644 index 00000000..3d77d117 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/var_def_gap.cfg @@ -0,0 +1,8 @@ +sp_after_ptr_star = remove +sp_after_byref = force +align_var_def_span = 3 +align_var_def_star_style = 2 +align_var_def_amp_style = 2 +align_var_def_gap = 5 +align_assign_span = 1 +align_typedef_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/wessex.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/wessex.cfg new file mode 100644 index 00000000..77fc3303 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cpp/wessex.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_switch_case = 4 +nl_max = 2 +macro-open BEGIN_MESSAGE_MAP +macro-close END_MESSAGE_MAP
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/615_nested_usings.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/615_nested_usings.cfg new file mode 100644 index 00000000..ae152fd4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/615_nested_usings.cfg @@ -0,0 +1 @@ +indent_using_block = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/620_getset-brace.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/620_getset-brace.cfg new file mode 100644 index 00000000..8e5510d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/620_getset-brace.cfg @@ -0,0 +1,5 @@ +indent_class = true +nl_getset_leave_one_liners = true +nl_getset_brace = force +nl_property_brace = force + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/625_where-constraints.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/625_where-constraints.cfg new file mode 100644 index 00000000..a6fa8175 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/625_where-constraints.cfg @@ -0,0 +1,4 @@ +sp_inside_angle = remove +sp_angle_shift = remove +sp_after_comma = add +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/Issue_2705.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/Issue_2705.cfg new file mode 100644 index 00000000..0a3ecb71 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/Issue_2705.cfg @@ -0,0 +1 @@ +mod_remove_empty_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U-J.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U-J.cfg new file mode 100644 index 00000000..21e55d74 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U-J.cfg @@ -0,0 +1,6 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_switch_case = 4 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_before_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U01-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U01-Cs.cfg new file mode 100644 index 00000000..8f88d782 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U01-Cs.cfg @@ -0,0 +1,282 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +#mod_add_long_ifdef_else_comment=8 +#mod_add_long_ifdef_endif_comment=8 +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U02-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U02-Cs.cfg new file mode 100644 index 00000000..c7d6aeda --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U02-Cs.cfg @@ -0,0 +1,8 @@ +input_tab_size = 4 +sp_skip_vbrace_tokens = true +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U03-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U03-Cs.cfg new file mode 100644 index 00000000..24961370 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U03-Cs.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_try_brace = force +nl_brace_catch = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U04-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U04-Cs.cfg new file mode 100644 index 00000000..b331f6f8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U04-Cs.cfg @@ -0,0 +1,10 @@ +input_tab_size = 4 +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +nl_class_leave_one_liners = true +nl_after_func_body = 2 +eat_blanks_before_close_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U06-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U06-Cs.cfg new file mode 100644 index 00000000..03c2c765 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U06-Cs.cfg @@ -0,0 +1,6 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_cs_delegate_brace = true +indent_class = true +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U07-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U07-Cs.cfg new file mode 100644 index 00000000..e3930c92 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U07-Cs.cfg @@ -0,0 +1,283 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 + +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U08-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U08-Cs.cfg new file mode 100644 index 00000000..666c8220 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U08-Cs.cfg @@ -0,0 +1,282 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=remove +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U09-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U09-Cs.cfg new file mode 100644 index 00000000..d74080d2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U09-Cs.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_cs_delegate_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U10-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U10-Cs.cfg new file mode 100644 index 00000000..42254ddb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U10-Cs.cfg @@ -0,0 +1,2 @@ +sp_inside_fparen = remove +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U11-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U11-Cs.cfg new file mode 100644 index 00000000..70557c46 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U11-Cs.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_single_after_return = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U13-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U13-Cs.cfg new file mode 100644 index 00000000..75f78b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U13-Cs.cfg @@ -0,0 +1 @@ +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U15-Cs.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U15-Cs.cfg new file mode 100644 index 00000000..5a700342 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/U15-Cs.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_class = true +nl_class_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11662.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11662.cfg new file mode 100644 index 00000000..24cf86a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11662.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +nl_class_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11993.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11993.cfg new file mode 100644 index 00000000..791d2a14 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-11993.cfg @@ -0,0 +1,287 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_member_single=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1288.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1288.cfg new file mode 100644 index 00000000..3b6cf1b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1288.cfg @@ -0,0 +1,9 @@ +sp_assign = add +sp_fparen_brace_initializer = add +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_off_after_return_new = true +nl_class_leave_one_liners = true +nl_after_func_body = 2 +eat_blanks_after_open_brace = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1338.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1338.cfg new file mode 100644 index 00000000..0eef21b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1338.cfg @@ -0,0 +1,8 @@ +sp_fparen_brace = add +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +nl_class_leave_one_liners = true +nl_end_of_file = force +nl_end_of_file_min = 1 +sp_inside_braces = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1343.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1343.cfg new file mode 100644 index 00000000..f5276e1f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1343.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_namespace = true +eat_blanks_before_close_brace = true +mod_add_long_namespace_closebrace_comment = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-13955.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-13955.cfg new file mode 100644 index 00000000..d1c7c955 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-13955.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +indent_paren_close = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-14131.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-14131.cfg new file mode 100644 index 00000000..7c5535ea --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-14131.cfg @@ -0,0 +1,4 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_cs_delegate_brace = true +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18437.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18437.cfg new file mode 100644 index 00000000..ce664b42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18437.cfg @@ -0,0 +1,287 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force +indent_member_single=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18829.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18829.cfg new file mode 100644 index 00000000..d65f6b27 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-18829.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1975.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1975.cfg new file mode 100644 index 00000000..80528dc6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1975.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1977.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1977.cfg new file mode 100644 index 00000000..4563bfde --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1977.cfg @@ -0,0 +1,6 @@ +output_tab_size = 4 +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +cmt_convert_tab_to_spaces = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1978.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1978.cfg new file mode 100644 index 00000000..2cf794e3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-1978.cfg @@ -0,0 +1,7 @@ +sp_arith = add +sp_inside_fparen = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +nl_tsquare_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-19895.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-19895.cfg new file mode 100644 index 00000000..ac4012d1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-19895.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +indent_align_paren = false +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2020.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2020.cfg new file mode 100644 index 00000000..0d78de45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2020.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2021.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2021.cfg new file mode 100644 index 00000000..827d33e0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2021.cfg @@ -0,0 +1,6 @@ +sp_func_def_paren = remove +sp_fparen_brace = add +nl_func_leave_one_liners = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_create_func_def_one_liner = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-21730.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-21730.cfg new file mode 100644 index 00000000..5443f32f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-21730.cfg @@ -0,0 +1,2 @@ +sp_before_comma = ignore +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2684.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2684.cfg new file mode 100644 index 00000000..c048c827 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2684.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +indent_cs_delegate_brace = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2685.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2685.cfg new file mode 100644 index 00000000..3f25a1fa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-2685.cfg @@ -0,0 +1,6 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +nl_end_of_file = force +nl_end_of_file_min = 1 +indent_cs_delegate_brace = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-29933.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-29933.cfg new file mode 100644 index 00000000..2f136516 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-29933.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +indent_switch_case = 4 +indent_align_assign = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-30498_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-30498_2.cfg new file mode 100644 index 00000000..8f635e72 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-30498_2.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_func_call_param = true +indent_switch_case = 4 +indent_align_assign = false +nl_class_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-3083.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-3083.cfg new file mode 100644 index 00000000..80528dc6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-3083.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-32658.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-32658.cfg new file mode 100644 index 00000000..9b71b98b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-32658.cfg @@ -0,0 +1,286 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_member_single=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-37241.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-37241.cfg new file mode 100644 index 00000000..e989f343 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-37241.cfg @@ -0,0 +1,287 @@ +input_tab_size=4 # Number +string_replace_tab_chars=true # { False, True } +tok_split_gte=false # { False, True } +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove # { Ignore, Add, Remove, Force } +utf8_byte=false # { False, True } +utf8_force=false # { False, True } +indent_columns=4 # Number +indent_with_tabs=0 # Number +indent_cmt_with_tabs=false # { False, True } +indent_align_string=false # { False, True } +indent_braces=false # { False, True } +indent_braces_no_func=false # { False, True } +indent_braces_no_class=false # { False, True } +indent_braces_no_struct=false # { False, True } +indent_brace_parent=false # { False, True } +indent_cs_delegate_brace=true # { False, True } +indent_namespace=true # { False, True } +indent_extern=false # { False, True } +indent_class=true # { False, True } +indent_class_colon=false # { False, True } +indent_else_if=false # { False, True } +indent_var_def_cont=false # { False, True } +indent_func_call_param=true # { False, True } +indent_func_def_param=true # { False, True } +indent_func_proto_param=true # { False, True } +indent_func_class_param=false # { False, True } +indent_func_ctor_var_param=false # { False, True } +indent_template_param=false # { False, True } +indent_func_param_double=false # { False, True } +indent_member_single=false # false/true +indent_relative_single_line_comments=false # { False, True } +indent_switch_case=4 # Number +indent_case_shift=0 # Number +indent_case_brace=0 # Number +indent_col1_comment=false # { False, True } +indent_label=-4 # Number +indent_access_spec=-4 # Number +indent_paren_nl=false # { False, True } +indent_comma_paren=0 # Number +indent_bool_paren=0 # Number +indent_first_bool_expr=false # { False, True } +indent_square_nl=false # { False, True } +indent_preserve_sql=false # { False, True } +indent_align_paren=false # { False, True } +indent_oc_block_msg_xcode_style=true # { False, True } +indent_off_after_return_new=true # { False, True } +indent_single_after_return=true # { False, True } +sp_arith=add # { Ignore, Add, Remove, Force } +sp_assign=add # { Ignore, Add, Remove, Force } +sp_assign_default=add # { Ignore, Add, Remove, Force } +sp_enum_assign=add # { Ignore, Add, Remove, Force } +sp_pp_concat=remove # { Ignore, Add, Remove, Force } +sp_pp_stringify=remove # { Ignore, Add, Remove, Force } +sp_bool=add # { Ignore, Add, Remove, Force } +sp_compare=add # { Ignore, Add, Remove, Force } +sp_inside_paren=remove # { Ignore, Add, Remove, Force } +sp_paren_paren=remove # { Ignore, Add, Remove, Force } +sp_balance_nested_parens=false # { False, True } +sp_paren_brace=force # { Ignore, Add, Remove, Force } +sp_after_type=ignore # { Ignore, Add, Remove, Force } +sp_template_angle=remove # { Ignore, Add, Remove, Force } +sp_before_angle=remove # { Ignore, Add, Remove, Force } +sp_inside_angle=remove # { Ignore, Add, Remove, Force } +sp_angle_paren=remove # { Ignore, Add, Remove, Force } +sp_angle_paren_empty=remove # { Ignore, Add, Remove, Force } +sp_angle_word=add # { Ignore, Add, Remove, Force } +sp_angle_shift=remove # { Ignore, Add, Remove, Force } +sp_before_sparen=force # { Ignore, Add, Remove, Force } +sp_inside_sparen=remove # { Ignore, Add, Remove, Force } +sp_after_sparen=add # { Ignore, Add, Remove, Force } +sp_sparen_brace=force # { Ignore, Add, Remove, Force } +sp_special_semi=force # { Ignore, Add, Remove, Force } +sp_before_semi=remove # { Ignore, Add, Remove, Force } +sp_before_semi_for=remove # { Ignore, Add, Remove, Force } +sp_before_semi_for_empty=remove # { Ignore, Add, Remove, Force } +sp_between_semi_for_empty=remove # { Ignore, Add, Remove, Force } +sp_after_semi=add # { Ignore, Add, Remove, Force } +sp_after_semi_for=force # { Ignore, Add, Remove, Force } +sp_after_semi_for_empty=remove # { Ignore, Add, Remove, Force } +sp_before_square=remove # { Ignore, Add, Remove, Force } +sp_before_squares=remove # { Ignore, Add, Remove, Force } +sp_inside_square=remove # { Ignore, Add, Remove, Force } +sp_after_comma=add # { Ignore, Add, Remove, Force } +sp_before_comma=ignore # { Ignore, Add, Remove, Force } +sp_after_mdatype_commas=remove # { Ignore, Add, Remove, Force } +sp_before_mdatype_commas=remove # { Ignore, Add, Remove, Force } +sp_between_mdatype_commas=remove # { Ignore, Add, Remove, Force } +sp_paren_comma=remove # { Ignore, Add, Remove, Force } +sp_after_class_colon=force # { Ignore, Add, Remove, Force } +sp_before_class_colon=force # { Ignore, Add, Remove, Force } +sp_before_case_colon=remove # { Ignore, Add, Remove, Force } +sp_after_operator=remove # { Ignore, Add, Remove, Force } +sp_after_operator_sym=remove # { Ignore, Add, Remove, Force } +sp_after_operator_sym_empty=remove # { Ignore, Add, Remove, Force } +sp_after_cast=remove # { Ignore, Add, Remove, Force } +sp_inside_paren_cast=remove # { Ignore, Add, Remove, Force } +sp_cpp_cast_paren=remove # { Ignore, Add, Remove, Force } +sp_sizeof_paren=remove # { Ignore, Add, Remove, Force } +sp_inside_braces_enum=add # { Ignore, Add, Remove, Force } +sp_inside_braces_empty=remove # { Ignore, Add, Remove, Force } +sp_type_func=ignore # { Ignore, Add, Remove, Force } +sp_func_proto_paren=remove # { Ignore, Add, Remove, Force } +sp_func_def_paren=remove # { Ignore, Add, Remove, Force } +sp_inside_fparens=remove # { Ignore, Add, Remove, Force } +sp_inside_fparen=remove # { Ignore, Add, Remove, Force } +sp_fparen_brace=add # { Ignore, Add, Remove, Force } +sp_func_call_paren=remove # { Ignore, Add, Remove, Force } +sp_func_call_paren_empty=remove # { Ignore, Add, Remove, Force } +sp_func_call_user_paren=remove # { Ignore, Add, Remove, Force } +sp_func_class_paren=remove # { Ignore, Add, Remove, Force } +sp_return_paren=add # { Ignore, Add, Remove, Force } +sp_defined_paren=remove # { Ignore, Add, Remove, Force } +sp_throw_paren=add # { Ignore, Add, Remove, Force } +sp_catch_paren=add # { Ignore, Add, Remove, Force } +sp_brace_typedef=add # { Ignore, Add, Remove, Force } +sp_getset_brace=add # { Ignore, Add, Remove, Force } +sp_after_dc=remove # { Ignore, Add, Remove, Force } +sp_not=remove # { Ignore, Add, Remove, Force } +sp_inv=remove # { Ignore, Add, Remove, Force } +sp_addr=remove # { Ignore, Add, Remove, Force } +sp_member=remove # { Ignore, Add, Remove, Force } +sp_deref=remove # { Ignore, Add, Remove, Force } +sp_sign=remove # { Ignore, Add, Remove, Force } +sp_incdec=remove # { Ignore, Add, Remove, Force } +sp_before_nl_cont=add # { Ignore, Add, Remove, Force } +sp_after_oc_scope=force # { Ignore, Add, Remove, Force } +sp_after_oc_colon=remove # { Ignore, Add, Remove, Force } +sp_before_oc_colon=remove # { Ignore, Add, Remove, Force } +sp_after_oc_dict_colon=force # { Ignore, Add, Remove, Force } +sp_before_oc_dict_colon=remove # { Ignore, Add, Remove, Force } +sp_after_send_oc_colon=force # { Ignore, Add, Remove, Force } +sp_before_send_oc_colon=remove # { Ignore, Add, Remove, Force } +sp_after_oc_type=remove # { Ignore, Add, Remove, Force } +sp_after_oc_return_type=remove # { Ignore, Add, Remove, Force } +sp_after_oc_at_sel=remove # { Ignore, Add, Remove, Force } +sp_inside_oc_at_sel_parens=remove # { Ignore, Add, Remove, Force } +sp_cond_colon=add # { Ignore, Add, Remove, Force } +sp_cond_question=add # { Ignore, Add, Remove, Force } +sp_case_label=ignore # { Ignore, Add, Remove, Force } +sp_after_new=force # { Ignore, Add, Remove, Force } +sp_between_new_paren=remove # { Ignore, Add, Remove, Force } +sp_skip_vbrace_tokens=true # { False, True } +align_keep_tabs=false # { False, True } +align_with_tabs=false # { False, True } +align_on_tabstop=false # { False, True } +align_number_right=false # { False, True } +align_func_params=false # { False, True } +align_same_func_call_params=false # { False, True } +align_var_def_colon=false # { False, True } +align_var_def_attribute=false # { False, True } +align_var_def_inline=false # { False, True } +align_right_cmt_mix=false # { False, True } +align_on_operator=false # { False, True } +align_mix_var_proto=false # { False, True } +align_single_line_func=false # { False, True } +align_single_line_brace=false # { False, True } +align_nl_cont=0 # Number +align_left_shift=false # { False, True } +nl_collapse_empty_body=false # { False, True } +nl_assign_leave_one_liners=true # { False, True } +nl_class_leave_one_liners=true # { False, True } +nl_enum_leave_one_liners=true # { False, True } +nl_getset_leave_one_liners=true # { False, True } +nl_func_leave_one_liners=true # { False, True } +nl_cpp_lambda_leave_one_liners=true # { False, True } +nl_if_leave_one_liners=false # { False, True } +nl_oc_msg_leave_one_liner=true # { False, True } +nl_start_of_file=remove # { Ignore, Add, Remove, Force } +nl_end_of_file=force # { Ignore, Add, Remove, Force } +nl_end_of_file_min=1 # Number +nl_assign_brace=force # { Ignore, Add, Remove, Force } +nl_enum_brace=force # { Ignore, Add, Remove, Force } +nl_struct_brace=force # { Ignore, Add, Remove, Force } +nl_union_brace=force # { Ignore, Add, Remove, Force } +nl_if_brace=force # { Ignore, Add, Remove, Force } +nl_brace_else=force # { Ignore, Add, Remove, Force } +nl_else_brace=force # { Ignore, Add, Remove, Force } +nl_else_if=remove # { Ignore, Add, Remove, Force } +nl_brace_finally=force # { Ignore, Add, Remove, Force } +nl_finally_brace=force # { Ignore, Add, Remove, Force } +nl_try_brace=force # { Ignore, Add, Remove, Force } +nl_getset_brace=force # { Ignore, Add, Remove, Force } +nl_for_brace=force # { Ignore, Add, Remove, Force } +nl_catch_brace=force # { Ignore, Add, Remove, Force } +nl_brace_catch=force # { Ignore, Add, Remove, Force } +nl_while_brace=force # { Ignore, Add, Remove, Force } +nl_using_brace=force # { Ignore, Add, Remove, Force } +nl_brace_brace=ignore # { Ignore, Add, Remove, Force } +nl_do_brace=force # { Ignore, Add, Remove, Force } +nl_brace_while=force # { Ignore, Add, Remove, Force } +nl_switch_brace=force # { Ignore, Add, Remove, Force } +nl_multi_line_cond=false # { False, True } +nl_before_case=false # { False, True } +nl_after_case=false # { False, True } +nl_case_colon_brace=force # { Ignore, Add, Remove, Force } +nl_namespace_brace=force # { Ignore, Add, Remove, Force } +nl_template_class=ignore # { Ignore, Add, Remove, Force } +nl_class_brace=force # { Ignore, Add, Remove, Force } +nl_fdef_brace=force # { Ignore, Add, Remove, Force } +nl_after_semicolon=false # { False, True } +nl_after_brace_open=false # { False, True } +nl_after_brace_open_cmt=false # { False, True } +nl_after_vbrace_open=false # { False, True } +nl_after_vbrace_open_empty=false # { False, True } +nl_after_brace_close=false # { False, True } +nl_after_vbrace_close=false # { False, True } +nl_squeeze_ifdef=false # { False, True } +nl_ds_struct_enum_cmt=false # { False, True } +nl_ds_struct_enum_close_brace=false # { False, True } +nl_namespace_two_to_one_liner=false # { False, True } +nl_create_if_one_liner=false # { False, True } +nl_create_for_one_liner=false # { False, True } +nl_create_while_one_liner=false # { False, True } +nl_create_func_def_one_liner=false # { False, True } +ls_for_split_full=false # { False, True } +ls_func_split_full=false # { False, True } +nl_max=3 # Number +nl_after_func_body=2 # Number +nl_after_multiline_comment=false # { False, True } +nl_property_brace=force # { Ignore, Add, Remove, Force } +eat_blanks_after_open_brace=true # { False, True } +eat_blanks_before_close_brace=true # { False, True } +nl_after_return=false # { False, True } +mod_full_brace_if_chain=0 # Number +mod_paren_on_return=ignore # { Ignore, Add, Remove, Force } +mod_pawn_semicolon=false # { False, True } +mod_full_paren_if_bool=false # { False, True } +mod_remove_extra_semicolon=true # { False, True } +mod_move_case_break=false # { False, True } +mod_remove_empty_return=true # { False, True } +cmt_convert_tab_to_spaces=True # { False, True } +cmt_indent_multi=false # { False, True } +cmt_c_group=false # { False, True } +cmt_c_nl_start=false # { False, True } +cmt_c_nl_end=false # { False, True } +cmt_cpp_group=false # { False, True } +cmt_cpp_nl_start=false # { False, True } +cmt_cpp_nl_end=false # { False, True } +cmt_cpp_to_c=false # { False, True } +cmt_star_cont=false # { False, True } +cmt_multi_check_last=false # { False, True } +cmt_insert_before_preproc=false # { False, True } +pp_space_after=ignore # { Ignore, Add, Remove, Force } +use_options_overriding_for_qt_macros=false # { False, True } +warn_level_tabs_found_in_verbatim_string_literals=1 # { 1, 2, 3 } +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force +nl_cs_property_leave_one_liners=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-9917.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-9917.cfg new file mode 100644 index 00000000..f1fd0af3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/UNI-9917.cfg @@ -0,0 +1,9 @@ +sp_inside_braces_empty = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_namespace = true +indent_class = true +nl_class_leave_one_liners = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_class_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_032.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_032.cfg new file mode 100644 index 00000000..00575c6b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_032.cfg @@ -0,0 +1,17 @@ +sp_inside_paren = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_else_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +align_var_def_span = 2 +align_assign_span = 1 +mod_full_brace_for = add +mod_full_brace_if = add +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_033.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_033.cfg new file mode 100644 index 00000000..3f1ffc6c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_033.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_class = true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_034.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_034.cfg new file mode 100644 index 00000000..0681b1b8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_034.cfg @@ -0,0 +1,4 @@ +indent_columns = 3 +indent_class = true +eat_blanks_before_close_brace = true +align_var_class_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_036.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_036.cfg new file mode 100644 index 00000000..ed89e06a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_036.cfg @@ -0,0 +1,6 @@ +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +nl_try_brace = add +nl_after_brace_close = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_037.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_037.cfg new file mode 100644 index 00000000..97daab41 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_037.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +sp_func_def_paren = remove +indent_columns = 3 +indent_class = true +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_038.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_038.cfg new file mode 100644 index 00000000..4384cfbd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_038.cfg @@ -0,0 +1,3 @@ +sp_inside_paren = remove +indent_columns = 3 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_043.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_043.cfg new file mode 100644 index 00000000..fcbc9ddc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_043.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +indent_class = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_044.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_044.cfg new file mode 100644 index 00000000..6815087d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_044.cfg @@ -0,0 +1,8 @@ +sp_inside_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_after_semicolon = true +nl_after_brace_open = true +align_var_def_span = 2 +align_assign_span = 1 +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_045.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_045.cfg new file mode 100644 index 00000000..9419199e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/ben_045.cfg @@ -0,0 +1,7 @@ +sp_assign = force +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +# Add or remove space around the '.' or '->;' operators. Default=Remove. +sp_member = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1620.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1620.cfg new file mode 100644 index 00000000..7ab2efdb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1620.cfg @@ -0,0 +1,289 @@ +input_tab_size=4
+string_replace_tab_chars=true
+tok_split_gte=false
+disable_processing_cmt=*begin-nonstandard-formatting*
+enable_processing_cmt=*end-nonstandard-formatting*
+utf8_bom=remove
+utf8_byte=false
+utf8_force=false
+indent_columns=4
+indent_with_tabs=0
+indent_cmt_with_tabs=false
+indent_align_string=false
+indent_braces=false
+indent_braces_no_func=false
+indent_braces_no_class=false
+indent_braces_no_struct=false
+indent_brace_parent=false
+indent_cs_delegate_brace=true
+indent_namespace=true
+indent_extern=false
+indent_class=true
+indent_class_colon=false
+indent_else_if=false
+indent_var_def_cont=false
+indent_func_call_param=true
+indent_func_def_param=true
+indent_func_proto_param=true
+indent_func_class_param=false
+indent_func_ctor_var_param=false
+indent_template_param=false
+indent_func_param_double=false
+indent_member_single=false
+indent_relative_single_line_comments=false
+indent_switch_case=4
+indent_case_shift=0
+indent_case_brace=0
+indent_col1_comment=false
+indent_label=-4
+indent_access_spec=-4
+indent_paren_nl=false
+indent_comma_paren=0
+indent_bool_paren=0
+indent_first_bool_expr=false
+indent_square_nl=false
+indent_preserve_sql=false
+indent_align_paren=false
+indent_oc_block_msg_xcode_style=true
+indent_off_after_return_new=true
+indent_single_after_return=true
+sp_arith=add
+sp_assign=add
+sp_assign_default=add
+sp_enum_assign=add
+sp_pp_concat=remove
+sp_pp_stringify=remove
+sp_bool=add
+sp_compare=add
+sp_inside_paren=remove
+sp_paren_paren=remove
+sp_balance_nested_parens=false
+sp_paren_brace=force
+sp_after_type=ignore
+sp_template_angle=remove
+sp_before_angle=remove
+sp_inside_angle=remove
+sp_angle_paren=remove
+sp_angle_paren_empty=remove
+sp_angle_word=add
+sp_angle_shift=remove
+sp_before_sparen=force
+sp_inside_sparen=remove
+sp_after_sparen=add
+sp_sparen_brace=force
+sp_special_semi=force
+sp_before_semi=remove
+sp_before_semi_for=remove
+sp_before_semi_for_empty=remove
+sp_between_semi_for_empty=remove
+sp_after_semi=add
+sp_after_semi_for=force
+sp_after_semi_for_empty=remove
+sp_before_square=remove
+sp_before_squares=remove
+sp_inside_square=remove
+sp_after_comma=add
+sp_before_comma=ignore
+sp_after_mdatype_commas=remove
+sp_before_mdatype_commas=remove
+sp_between_mdatype_commas=remove
+sp_paren_comma=remove
+sp_after_class_colon=force
+sp_before_class_colon=force
+sp_before_case_colon=remove
+sp_after_operator=remove
+sp_after_operator_sym=remove
+sp_after_operator_sym_empty=remove
+sp_after_cast=remove
+sp_inside_paren_cast=remove
+sp_cpp_cast_paren=remove
+sp_sizeof_paren=remove
+sp_inside_braces_enum=add
+sp_inside_braces_empty=remove
+sp_type_func=ignore
+sp_func_proto_paren=remove
+sp_func_def_paren=remove
+sp_inside_fparens=remove
+sp_inside_fparen=remove
+sp_fparen_brace=add
+sp_func_call_paren=remove
+sp_func_call_paren_empty=remove
+sp_func_call_user_paren=remove
+sp_func_class_paren=remove
+sp_return_paren=add
+sp_defined_paren=remove
+sp_throw_paren=add
+sp_catch_paren=add
+sp_brace_typedef=add
+sp_getset_brace=add
+sp_after_dc=remove
+sp_not=remove
+sp_inv=remove
+sp_addr=remove
+sp_member=remove
+sp_deref=remove
+sp_sign=remove
+sp_incdec=remove
+sp_before_nl_cont=add
+sp_after_oc_scope=force
+sp_after_oc_colon=remove
+sp_before_oc_colon=remove
+sp_after_oc_dict_colon=force
+sp_before_oc_dict_colon=remove
+sp_after_send_oc_colon=force
+sp_before_send_oc_colon=remove
+sp_after_oc_type=remove
+sp_after_oc_return_type=remove
+sp_after_oc_at_sel=remove
+sp_inside_oc_at_sel_parens=remove
+sp_cond_colon=add
+sp_cond_question=add
+sp_case_label=ignore
+sp_after_new=force
+sp_between_new_paren=remove
+sp_skip_vbrace_tokens=true
+align_keep_tabs=false
+align_with_tabs=false
+align_on_tabstop=false
+align_number_right=false
+align_func_params=false
+align_same_func_call_params=false
+align_var_def_colon=false
+align_var_def_attribute=false
+align_var_def_inline=false
+align_right_cmt_mix=false
+align_on_operator=false
+align_mix_var_proto=false
+align_single_line_func=false
+align_single_line_brace=false
+align_nl_cont=0
+align_left_shift=false
+nl_collapse_empty_body=false
+nl_assign_leave_one_liners=true
+nl_class_leave_one_liners=true
+nl_enum_leave_one_liners=true
+nl_getset_leave_one_liners=true
+nl_func_leave_one_liners=true
+nl_cpp_lambda_leave_one_liners=true
+nl_if_leave_one_liners=false
+nl_oc_msg_leave_one_liner=true
+nl_start_of_file=remove
+nl_end_of_file=force
+nl_end_of_file_min=1
+nl_assign_brace=force
+nl_enum_brace=force
+nl_struct_brace=force
+nl_union_brace=force
+nl_if_brace=force
+nl_brace_else=force
+nl_else_brace=force
+nl_else_if=remove
+nl_brace_finally=force
+nl_finally_brace=force
+nl_try_brace=force
+nl_getset_brace=force
+nl_for_brace=force
+nl_catch_brace=force
+nl_brace_catch=force
+nl_while_brace=force
+nl_using_brace=force
+nl_brace_brace=ignore
+nl_do_brace=force
+nl_brace_while=force
+nl_switch_brace=force
+nl_multi_line_cond=false
+nl_before_case=false
+nl_after_case=false
+nl_case_colon_brace=force
+nl_namespace_brace=force
+nl_template_class=ignore
+nl_class_brace=force
+nl_fdef_brace=force
+nl_after_semicolon=false
+nl_after_brace_open=false
+nl_after_brace_open_cmt=false
+nl_after_vbrace_open=false
+nl_after_vbrace_open_empty=false
+nl_after_brace_close=false
+nl_after_vbrace_close=false
+nl_squeeze_ifdef=false
+nl_ds_struct_enum_cmt=false
+nl_ds_struct_enum_close_brace=false
+nl_namespace_two_to_one_liner=false
+nl_create_if_one_liner=false
+nl_create_for_one_liner=false
+nl_create_while_one_liner=false
+nl_create_func_def_one_liner=false
+ls_for_split_full=false
+ls_func_split_full=false
+nl_max=3
+nl_after_func_body=2
+nl_after_multiline_comment=false
+nl_property_brace=force
+eat_blanks_after_open_brace=true
+eat_blanks_before_close_brace=true
+nl_after_return=false
+mod_full_brace_if_chain=0
+mod_paren_on_return=ignore
+mod_pawn_semicolon=false
+mod_full_paren_if_bool=false
+mod_remove_extra_semicolon=true
+mod_move_case_break=false
+mod_remove_empty_return=true
+cmt_convert_tab_to_spaces=True
+cmt_indent_multi=false
+cmt_c_group=false
+cmt_c_nl_start=false
+cmt_c_nl_end=false
+cmt_cpp_group=false
+cmt_cpp_nl_start=false
+cmt_cpp_nl_end=false
+cmt_cpp_to_c=false
+cmt_star_cont=false
+cmt_multi_check_last=false
+cmt_insert_before_preproc=false
+pp_space_after=ignore
+use_options_overriding_for_qt_macros=false
+warn_level_tabs_found_in_verbatim_string_literals=1
+mod_add_long_ifdef_else_comment=0
+mod_add_long_ifdef_endif_comment=0
+
+
+
+# Setting this 'false' will cause an extra tab to be added to function call args from an assignment:
+#
+# x = o.Func2(a, b,
+# y);
+# o.Func2(a, b,
+# y);
+#
+# ...but setting it 'true' is often worse:
+#
+# ExtraReallyLongType reallyLongVariableName = someTest
+# ? someTrueExpr
+# : someFalseExpr
+#
+# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or,
+# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did.
+# (currently unreported)
+indent_align_assign=false
+
+# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space
+# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++
+# comment line at the same level of indentation.
+# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us
+# (test using Runtime/Allocator/BucketAllocator.h)
+# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further
+#sp_cmt_cpp_start=add
+sp_cmt_cpp_start=ignore
+
+# https://sourceforge.net/p/uncrustify/bugs/619/
+#sp_endif_cmt=force
+sp_endif_cmt=ignore
+
+# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example:
+# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp
+#nl_cpp_ldef_brace=force
+indent_paren_open_brace=true
+indent_cs_delegate_brace=false
+indent_paren_close=2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1637.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1637.cfg new file mode 100644 index 00000000..c812a407 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1637.cfg @@ -0,0 +1,287 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_member_single=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force + +mod_paren_on_return=remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1650.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1650.cfg new file mode 100644 index 00000000..166b3961 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_1650.cfg @@ -0,0 +1,288 @@ +input_tab_size=4
+string_replace_tab_chars=true
+tok_split_gte=false
+disable_processing_cmt=*begin-nonstandard-formatting*
+enable_processing_cmt=*end-nonstandard-formatting*
+utf8_bom=remove
+utf8_byte=false
+utf8_force=false
+indent_columns=4
+indent_with_tabs=0
+indent_cmt_with_tabs=false
+indent_align_string=false
+indent_braces=false
+indent_braces_no_func=false
+indent_braces_no_class=false
+indent_braces_no_struct=false
+indent_brace_parent=false
+indent_cs_delegate_brace=true
+indent_namespace=true
+indent_extern=false
+indent_class=true
+indent_class_colon=false
+indent_else_if=false
+indent_var_def_cont=false
+indent_func_call_param=true
+indent_func_def_param=true
+indent_func_proto_param=true
+indent_func_class_param=false
+indent_func_ctor_var_param=false
+indent_template_param=false
+indent_func_param_double=false
+indent_relative_single_line_comments=false
+indent_switch_case=4
+indent_case_shift=0
+indent_case_brace=0
+indent_col1_comment=false
+indent_label=-4
+indent_access_spec=-4
+indent_paren_nl=false
+indent_comma_paren=0
+indent_bool_paren=0
+indent_first_bool_expr=false
+indent_square_nl=false
+indent_preserve_sql=false
+indent_align_paren=false
+indent_oc_block_msg_xcode_style=true
+indent_off_after_return_new=true
+indent_single_after_return=true
+sp_arith=add
+sp_assign=add
+sp_assign_default=add
+sp_enum_assign=add
+sp_pp_concat=remove
+sp_pp_stringify=remove
+sp_bool=add
+sp_compare=add
+sp_inside_paren=remove
+sp_paren_paren=remove
+sp_balance_nested_parens=false
+sp_paren_brace=force
+sp_after_type=ignore
+sp_template_angle=remove
+sp_before_angle=remove
+sp_inside_angle=remove
+sp_angle_paren=remove
+sp_angle_paren_empty=remove
+sp_angle_word=add
+sp_angle_shift=remove
+sp_before_sparen=force
+sp_inside_sparen=remove
+sp_after_sparen=add
+sp_sparen_brace=force
+sp_special_semi=force
+sp_before_semi=remove
+sp_before_semi_for=remove
+sp_before_semi_for_empty=remove
+sp_between_semi_for_empty=remove
+sp_after_semi=add
+sp_after_semi_for=force
+sp_after_semi_for_empty=remove
+sp_before_square=remove
+sp_before_squares=remove
+sp_inside_square=remove
+sp_after_comma=add
+sp_before_comma=ignore
+sp_after_mdatype_commas=remove
+sp_before_mdatype_commas=remove
+sp_between_mdatype_commas=remove
+sp_paren_comma=remove
+sp_after_class_colon=force
+sp_before_class_colon=force
+sp_before_case_colon=remove
+sp_after_operator=remove
+sp_after_operator_sym=remove
+sp_after_operator_sym_empty=remove
+sp_after_cast=remove
+sp_inside_paren_cast=remove
+sp_cpp_cast_paren=remove
+sp_sizeof_paren=remove
+sp_inside_braces_enum=add
+sp_inside_braces_empty=remove
+sp_type_func=ignore
+sp_func_proto_paren=remove
+sp_func_def_paren=remove
+sp_inside_fparens=remove
+sp_inside_fparen=remove
+sp_fparen_brace=add
+sp_func_call_paren=remove
+sp_func_call_paren_empty=remove
+sp_func_call_user_paren=remove
+sp_func_class_paren=remove
+sp_return_paren=add
+sp_defined_paren=remove
+sp_throw_paren=add
+sp_catch_paren=add
+sp_getset_brace=add
+sp_after_dc=remove
+sp_not=remove
+sp_inv=remove
+sp_addr=remove
+sp_member=remove
+sp_deref=remove
+sp_sign=remove
+sp_incdec=remove
+sp_before_nl_cont=add
+sp_after_oc_scope=force
+sp_after_oc_colon=remove
+sp_before_oc_colon=remove
+sp_after_oc_dict_colon=force
+sp_before_oc_dict_colon=remove
+sp_after_send_oc_colon=force
+sp_before_send_oc_colon=remove
+sp_after_oc_type=remove
+sp_after_oc_return_type=remove
+sp_after_oc_at_sel=remove
+sp_inside_oc_at_sel_parens=remove
+sp_cond_colon=add
+sp_cond_question=add
+sp_case_label=ignore
+sp_after_new=force
+sp_between_new_paren=remove
+sp_skip_vbrace_tokens=true
+align_keep_tabs=false
+align_with_tabs=false
+align_on_tabstop=false
+align_number_right=false
+align_func_params=false
+align_same_func_call_params=false
+align_var_def_colon=false
+align_var_def_attribute=false
+align_var_def_inline=false
+align_right_cmt_mix=false
+align_on_operator=false
+align_mix_var_proto=false
+align_single_line_func=false
+align_single_line_brace=false
+align_nl_cont=0
+align_left_shift=false
+nl_collapse_empty_body=false
+nl_assign_leave_one_liners=true
+nl_class_leave_one_liners=true
+nl_enum_leave_one_liners=true
+nl_getset_leave_one_liners=true
+nl_func_leave_one_liners=true
+nl_cpp_lambda_leave_one_liners=true
+nl_if_leave_one_liners=false
+nl_oc_msg_leave_one_liner=true
+nl_start_of_file=remove
+nl_end_of_file=force
+nl_end_of_file_min=1
+nl_assign_brace=force
+nl_enum_brace=force
+nl_struct_brace=force
+nl_union_brace=force
+nl_if_brace=force
+nl_brace_else=force
+nl_else_brace=force
+nl_else_if=remove
+nl_brace_finally=force
+nl_finally_brace=force
+nl_try_brace=force
+nl_getset_brace=force
+nl_for_brace=force
+nl_catch_brace=force
+nl_brace_catch=force
+nl_while_brace=force
+nl_using_brace=force
+nl_brace_brace=ignore
+nl_do_brace=force
+nl_brace_while=force
+nl_switch_brace=force
+nl_multi_line_cond=false
+nl_before_case=false
+nl_after_case=false
+nl_case_colon_brace=force
+nl_namespace_brace=force
+nl_template_class=ignore
+nl_class_brace=force
+nl_fdef_brace=force
+nl_after_semicolon=false
+nl_after_brace_open=false
+nl_after_brace_open_cmt=false
+nl_after_vbrace_open=false
+nl_after_vbrace_open_empty=false
+nl_after_brace_close=false
+nl_after_vbrace_close=false
+nl_squeeze_ifdef=false
+nl_ds_struct_enum_cmt=false
+nl_ds_struct_enum_close_brace=false
+nl_namespace_two_to_one_liner=false
+nl_create_if_one_liner=false
+nl_create_for_one_liner=false
+nl_create_while_one_liner=false
+nl_create_func_def_one_liner=false
+ls_for_split_full=false
+ls_func_split_full=false
+nl_max=3
+nl_after_func_body=2
+nl_after_multiline_comment=false
+nl_property_brace=force
+eat_blanks_after_open_brace=true
+eat_blanks_before_close_brace=true
+nl_after_return=false
+mod_full_brace_if_chain=0
+mod_paren_on_return=ignore
+mod_pawn_semicolon=false
+mod_full_paren_if_bool=false
+mod_remove_extra_semicolon=true
+mod_move_case_break=false
+mod_remove_empty_return=true
+cmt_convert_tab_to_spaces=True
+cmt_indent_multi=false
+cmt_c_group=false
+cmt_c_nl_start=false
+cmt_c_nl_end=false
+cmt_cpp_group=false
+cmt_cpp_nl_start=false
+cmt_cpp_nl_end=false
+cmt_cpp_to_c=false
+cmt_star_cont=false
+cmt_multi_check_last=false
+cmt_insert_before_preproc=false
+pp_space_after=ignore
+use_options_overriding_for_qt_macros=false
+warn_level_tabs_found_in_verbatim_string_literals=1
+mod_add_long_ifdef_else_comment=0
+mod_add_long_ifdef_endif_comment=0
+
+
+
+# Setting this 'false' will cause an extra tab to be added to function call args from an assignment:
+#
+# x = o.Func2(a, b,
+# y);
+# o.Func2(a, b,
+# y);
+#
+# ...but setting it 'true' is often worse:
+#
+# ExtraReallyLongType reallyLongVariableName = someTest
+# ? someTrueExpr
+# : someFalseExpr
+#
+# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or,
+# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did.
+# (currently unreported)
+indent_align_assign=false
+
+# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space
+# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++
+# comment line at the same level of indentation.
+# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us
+# (test using Runtime/Allocator/BucketAllocator.h)
+# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further
+#sp_cmt_cpp_start=add
+sp_cmt_cpp_start=ignore
+
+# https://sourceforge.net/p/uncrustify/bugs/619/
+#sp_endif_cmt=force
+sp_endif_cmt=ignore
+
+# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example:
+# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp
+#nl_cpp_ldef_brace=force
+indent_cs_delegate_body=true
+indent_paren_open_brace=true
+indent_member_single=true
+indent_paren_close=2
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_600.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_600.cfg new file mode 100644 index 00000000..5c47913d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_600.cfg @@ -0,0 +1 @@ +sp_before_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_620.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_620.cfg new file mode 100644 index 00000000..4486cd45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/bug_620.cfg @@ -0,0 +1,5 @@ +indent_class = true +nl_getset_leave_one_liners = true +nl_getset_brace = force +nl_after_brace_close = true +nl_property_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-f.cfg new file mode 100644 index 00000000..6ea5a2af --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-f.cfg @@ -0,0 +1,4 @@ +sp_after_comma = force +sp_after_mdatype_commas = force +sp_before_mdatype_commas = force +sp_between_mdatype_commas = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-i.cfg new file mode 100644 index 00000000..f78c61b3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-i.cfg @@ -0,0 +1,4 @@ +sp_after_comma = ignore +sp_after_mdatype_commas = ignore +sp_before_mdatype_commas = ignore +sp_between_mdatype_commas = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-r.cfg new file mode 100644 index 00000000..626b6ff1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/comma-cs-r.cfg @@ -0,0 +1,4 @@ +sp_after_comma = remove +sp_after_mdatype_commas = remove +sp_before_mdatype_commas = remove +sp_between_mdatype_commas = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/cs_generics.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/cs_generics.cfg new file mode 100644 index 00000000..e4320a80 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/cs_generics.cfg @@ -0,0 +1,5 @@ +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren_empty = remove +sp_angle_shift = remove +sp_sizeof_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/getset.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/getset.cfg new file mode 100644 index 00000000..1e1ab8e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/getset.cfg @@ -0,0 +1,2 @@ +indent_with_tabs = 0 +nl_getset_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent-multistring-coulmn1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent-multistring-coulmn1.cfg new file mode 100644 index 00000000..8ce9a4ff --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent-multistring-coulmn1.cfg @@ -0,0 +1 @@ +indent_col1_multi_string_literal = True diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_cs_delegate_brace-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_cs_delegate_brace-t.cfg new file mode 100644 index 00000000..9a4e6382 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_cs_delegate_brace-t.cfg @@ -0,0 +1 @@ +indent_cs_delegate_brace = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_using_block-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_using_block-f.cfg new file mode 100644 index 00000000..2bfca802 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/indent_using_block-f.cfg @@ -0,0 +1 @@ +indent_using_block = false
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_a.cfg new file mode 100644 index 00000000..b05558b7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_a.cfg @@ -0,0 +1,4 @@ +sp_after_comma = add +sp_after_mdatype_commas = force +sp_before_mdatype_commas = force +sp_between_mdatype_commas = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_c.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_c.cfg new file mode 100644 index 00000000..9bfcef37 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mda_space_c.cfg @@ -0,0 +1,2 @@ +sp_after_comma = add +sp_between_mdatype_commas = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/misc-failures.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/misc-failures.cfg new file mode 100644 index 00000000..36b9e694 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/misc-failures.cfg @@ -0,0 +1,6 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +indent_align_assign = false +nl_assign_brace = force +nl_max = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-0.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-0.cfg new file mode 100644 index 00000000..c187d46a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-0.cfg @@ -0,0 +1,5 @@ +mod_full_brace_for = remove +mod_full_brace_if = remove +mod_full_brace_nl_block_rem_mlcond = true +mod_full_brace_while = remove +mod_full_brace_using = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-1.cfg new file mode 100644 index 00000000..13ebbd4a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_brace_nl_block_rem_mlcond-1.cfg @@ -0,0 +1,2 @@ +mod_full_brace_if_chain = 1 +mod_full_brace_nl_block_rem_mlcond = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_paren_if_bool.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_paren_if_bool.cfg new file mode 100644 index 00000000..f75f8801 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_full_paren_if_bool.cfg @@ -0,0 +1 @@ +mod_full_paren_if_bool = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_sort_using-t.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_sort_using-t.cfg new file mode 100644 index 00000000..805fc734 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mod_sort_using-t.cfg @@ -0,0 +1 @@ +mod_sort_using = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mono.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mono.cfg new file mode 100644 index 00000000..64783953 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/mono.cfg @@ -0,0 +1,7 @@ + +sp_before_square = add +sp_func_call_paren = force +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +nl_fdef_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/new-constraint-paren-space.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/new-constraint-paren-space.cfg new file mode 100644 index 00000000..f96e03b6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/new-constraint-paren-space.cfg @@ -0,0 +1 @@ +sp_after_new=force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sf607.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sf607.cfg new file mode 100644 index 00000000..ac5c0069 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sf607.cfg @@ -0,0 +1,2 @@ +nl_getset_brace = force +nl_property_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sort_using_categ.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sort_using_categ.cfg new file mode 100644 index 00000000..bf7f26e6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sort_using_categ.cfg @@ -0,0 +1,2 @@ +mod_sort_using = true +include_category_0 = "System"
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_after_comma-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_after_comma-a.cfg new file mode 100644 index 00000000..3f67ae0e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_after_comma-a.cfg @@ -0,0 +1 @@ +sp_after_comma = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_assign-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_assign-a.cfg new file mode 100644 index 00000000..78ee09f5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_assign-a.cfg @@ -0,0 +1 @@ +sp_assign = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_between_new_paren.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_between_new_paren.cfg new file mode 100644 index 00000000..0a338bd2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/sp_between_new_paren.cfg @@ -0,0 +1,2 @@ +sp_after_new = force +sp_between_new_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/squeeze-paren-close-Option.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/squeeze-paren-close-Option.cfg new file mode 100644 index 00000000..9d4a4f70 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/squeeze-paren-close-Option.cfg @@ -0,0 +1,7 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_func_call_param = true +indent_paren_close = 2 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_squeeze_paren_close = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/tcf.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/tcf.cfg new file mode 100644 index 00000000..dd7fa193 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/tcf.cfg @@ -0,0 +1,4 @@ +nl_finally_brace = force +nl_after_try_catch_finally = 3 +nl_around_cs_property = 2 +nl_between_get_set = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/verbatim_strings.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/verbatim_strings.cfg new file mode 100644 index 00000000..65e1756d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/cs/verbatim_strings.cfg @@ -0,0 +1,8 @@ +string_replace_tab_chars = true +indent_columns = 4 +indent_class = true + +# needed to suppress warnings about a +# 'Detected non-replaceable tab char in literal string' in +# input/cs/verbatim_strings.cs:4 +warn_level_tabs_found_in_verbatim_string_literals=3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/1438.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/1438.cfg new file mode 100644 index 00000000..6973c22f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/1438.cfg @@ -0,0 +1,2 @@ +# Add or remove space between 'invariant' and '(' in the D language. +sp_invariant_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d-tst2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d-tst2.cfg new file mode 100644 index 00000000..db15aa59 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d-tst2.cfg @@ -0,0 +1,5 @@ +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +align_var_def_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-i.cfg new file mode 100644 index 00000000..b2f0f87a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-i.cfg @@ -0,0 +1,2 @@ +sp_before_template_paren = ignore +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-r.cfg new file mode 100644 index 00000000..888247f8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2-r.cfg @@ -0,0 +1,2 @@ +sp_before_template_paren = remove +indent_columns = 4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2.cfg new file mode 100644 index 00000000..1f70f5ca --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d2.cfg @@ -0,0 +1,50 @@ +sp_sparen_brace = add +sp_arith = force +sp_compare = force +sp_inside_paren = remove +sp_paren_paren = remove +sp_before_template_paren = force +sp_before_sparen = force +sp_inside_sparen = remove +sp_inside_for = remove +sp_after_comma = force +sp_after_cast = remove +sp_func_def_paren = remove +sp_inside_fparen = remove +sp_fparen_brace = force +sp_else_brace = force +sp_do_brace_open = force +sp_while_paren_open = force +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +indent_case_brace = 4 +nl_start_of_file = remove +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_enum_brace = remove +nl_if_brace = remove +nl_else_brace = remove +nl_for_brace = remove +nl_while_brace = remove +nl_do_brace = remove +nl_switch_brace = remove +nl_before_case = true +nl_fdef_brace = remove +nl_after_brace_open = true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +nl_after_return = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_enum_equ_span = 4 +align_var_class_span = 2 +align_typedef_gap = 3 +align_typedef_span = 5 +align_right_cmt_span = 3 +cmt_star_cont = true +mod_full_brace_if = add +mod_full_brace_while = add +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3.cfg new file mode 100644 index 00000000..4ce7da1b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3.cfg @@ -0,0 +1,18 @@ +sp_assign = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_squares = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_label = 2 +nl_assign_square = remove +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_end = 1 +nl_before_case = true +eat_blanks_before_close_brace = true +align_var_def_span = 2 +align_assign_span = 1 +align_var_struct_span = 3 +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3a.cfg new file mode 100644 index 00000000..c729c215 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d3a.cfg @@ -0,0 +1,19 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_before_squares = remove +sp_inside_square = force +sp_d_array_colon = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_label = 2 +nl_assign_square = force +nl_var_def_blk_end_func_top = 1 +nl_var_def_blk_end = 1 +nl_before_case = true +eat_blanks_before_close_brace = true +align_var_def_span = 2 +align_assign_span = 1 +align_var_struct_span = 3 +align_typedef_gap = 3 +align_typedef_span = 5 +align_typedef_star_style = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d_sp_paren.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d_sp_paren.cfg new file mode 100644 index 00000000..5b3443e6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/d_sp_paren.cfg @@ -0,0 +1,4 @@ +sp_before_sparen = force +sp_catch_paren = remove +sp_version_paren = remove +sp_scope_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/invariant.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/invariant.cfg new file mode 100644 index 00000000..a462b4d0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/invariant.cfg @@ -0,0 +1 @@ +sp_after_invariant_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/libd.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/libd.cfg new file mode 100644 index 00000000..a29c77a4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/libd.cfg @@ -0,0 +1,5 @@ +input_tab_size = 4 +output_tab_size = 4 +indent_columns = 4 +nl_end_of_file = add +nl_end_of_file_min = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/sp_after_type-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/sp_after_type-a.cfg new file mode 100644 index 00000000..da7a3edb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/d/sp_after_type-a.cfg @@ -0,0 +1 @@ +sp_after_type = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/ecma/ben_098.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/ecma/ben_098.cfg new file mode 100644 index 00000000..bade1890 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/ecma/ben_098.cfg @@ -0,0 +1,6 @@ +sp_inside_paren = remove +indent_columns = 3 +nl_var_def_blk_end_func_top = 1 +nl_fcall_brace = add +align_right_cmt_span = 3 +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1122.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1122.cfg new file mode 100644 index 00000000..8a152eda --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1122.cfg @@ -0,0 +1 @@ +nl_before_throw = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-f.cfg new file mode 100644 index 00000000..bec692b6 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-f.cfg @@ -0,0 +1,2 @@ +nl_after_member = force +nl_before_member = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-r.cfg new file mode 100644 index 00000000..1c610373 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1124-r.cfg @@ -0,0 +1,2 @@ +nl_after_member = remove +nl_before_member = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1845.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1845.cfg new file mode 100644 index 00000000..5d339f68 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_1845.cfg @@ -0,0 +1 @@ +nl_after_annotation = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_670.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_670.cfg new file mode 100644 index 00000000..504b1d7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/Issue_670.cfg @@ -0,0 +1,4 @@ +code_width = 80 +indent_columns = 4 +indent_continue = 4 +indent_continue_class_head = 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/annotation.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/annotation.cfg new file mode 100644 index 00000000..0d800a82 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/annotation.cfg @@ -0,0 +1,2 @@ +nl_after_annotation = force +nl_between_annotation = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/ben_099.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/ben_099.cfg new file mode 100644 index 00000000..6cd10860 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/ben_099.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +indent_columns = 3 +indent_class = true +nl_fdef_brace = add +eat_blanks_after_open_brace = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/doxy-javadoc-alignment.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/doxy-javadoc-alignment.cfg new file mode 100644 index 00000000..786a9ac7 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/doxy-javadoc-alignment.cfg @@ -0,0 +1,7 @@ +cmt_reflow_mode = 2 +cmt_width = 70 +cmt_sp_after_star_cont = 1 +cmt_indent_multi = true +cmt_align_doxygen_javadoc_tags = true +cmt_sp_before_doxygen_javadoc_tags = 1 +cmt_reflow_fold_regex_file="reflow_fold_regex.txt" diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_foreach.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_foreach.cfg new file mode 100644 index 00000000..56ec94cd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_foreach.cfg @@ -0,0 +1,7 @@ +sp_before_for_colon = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_class = true +nl_start_of_file = remove +nl_end_of_file = add +code_width = 80
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_1.cfg new file mode 100644 index 00000000..e57bba91 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_1.cfg @@ -0,0 +1,7 @@ +sp_before_sparen = force +sp_inside_sparen = force +indent_class = true +nl_synchronized_brace = force +nl_class_brace = force +nl_before_synchronized = force +nl_after_synchronized = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_2.cfg new file mode 100644 index 00000000..3512cdc8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/java_synchronized_2.cfg @@ -0,0 +1,2 @@ +indent_class = true +nl_synchronized_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-f.cfg new file mode 100644 index 00000000..fde00f38 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-f.cfg @@ -0,0 +1,2 @@ +indent_columns = 3 +nl_paren_dbrace_open = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-r.cfg new file mode 100644 index 00000000..ed2a6942 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/jdbi-r.cfg @@ -0,0 +1,3 @@ +sp_fparen_dbrace = force +indent_columns = 3 +nl_paren_dbrace_open = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/leading-tabs-for-java-lambda.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/leading-tabs-for-java-lambda.cfg new file mode 100644 index 00000000..ba1f063e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/leading-tabs-for-java-lambda.cfg @@ -0,0 +1,4 @@ +indent_with_tabs = 1 +indent_class = true +cmt_indent_multi = false +indent_cs_delegate_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/mod_add_long_class_closebrace_comment-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/mod_add_long_class_closebrace_comment-1.cfg new file mode 100644 index 00000000..c1e8e0ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/mod_add_long_class_closebrace_comment-1.cfg @@ -0,0 +1 @@ +mod_add_long_class_closebrace_comment = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_after_annotation-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_after_annotation-f.cfg new file mode 100644 index 00000000..405f8ef4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_after_annotation-f.cfg @@ -0,0 +1 @@ +nl_after_annotation = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_between_annotation-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_between_annotation-f.cfg new file mode 100644 index 00000000..6a67c354 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/nl_between_annotation-f.cfg @@ -0,0 +1 @@ +nl_between_annotation = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/reflow_fold_regex.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/reflow_fold_regex.txt new file mode 100644 index 00000000..9a24626f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/reflow_fold_regex.txt @@ -0,0 +1,4 @@ +end_of_prev_line_regex[0] = "(?:[\w,\]\)]|\.\.\.|;|\})$" +beg_of_next_line_regex[0] = "^(?:[\w,\[\(]|\.\.\.|\{)" +end_of_prev_line_regex[1] = "[^\.]\.$" +beg_of_next_line_regex[1] = "^[A-Z]"
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_after_for_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_after_for_colon.cfg new file mode 100644 index 00000000..70b19e50 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_after_for_colon.cfg @@ -0,0 +1 @@ +sp_after_for_colon = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_this_paren.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_this_paren.cfg new file mode 100644 index 00000000..fc80bb28 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/sp_this_paren.cfg @@ -0,0 +1,2 @@ +sp_super_paren = force +sp_this_paren = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/template_angles.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/template_angles.cfg new file mode 100644 index 00000000..14680e53 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/java/template_angles.cfg @@ -0,0 +1,4 @@ +sp_before_angle = remove +sp_inside_angle = remove +sp_angle_paren_empty = remove +sp_angle_shift = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/1927.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/1927.cfg new file mode 100644 index 00000000..a61990fe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/1927.cfg @@ -0,0 +1,4 @@ +# Add or remove space between '}' and '@catch' if on the same line. +# If set to ignore, sp_brace_catch is used. +sp_oc_brace_catch = force +sp_sparen_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3766.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3766.cfg new file mode 100644 index 00000000..610168da --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3766.cfg @@ -0,0 +1,3 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3767.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3767.cfg new file mode 100644 index 00000000..8c30228c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3767.cfg @@ -0,0 +1,11 @@ +input_tab_size = 2 +output_tab_size = 2 +sp_arith = force +sp_assign = force +sp_cpp_lambda_assign = remove +sp_cpp_lambda_square_paren = remove +sp_cpp_lambda_square_brace = force +sp_cpp_lambda_paren_brace = force +sp_cpp_lambda_fparen = remove +sp_after_ptr_star = remove +nl_cpp_lambda_leave_one_liners = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3811.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3811.cfg new file mode 100644 index 00000000..20b7d2dc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3811.cfg @@ -0,0 +1,3 @@ +mod_enum_last_comma = force +indent_with_tabs = 0 +indent_columns = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3812.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3812.cfg new file mode 100644 index 00000000..298c97d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3812.cfg @@ -0,0 +1,3 @@ +indent_switch_case = 2 +indent_with_tabs = 0 +indent_columns = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3813.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3813.cfg new file mode 100644 index 00000000..298c97d3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3813.cfg @@ -0,0 +1,3 @@ +indent_switch_case = 2 +indent_with_tabs = 0 +indent_columns = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3819.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3819.cfg new file mode 100644 index 00000000..8e10acd4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3819.cfg @@ -0,0 +1 @@ +sp_arith = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3823.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3823.cfg new file mode 100644 index 00000000..fda2290c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/3823.cfg @@ -0,0 +1,2 @@ +indent_columns = 2 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_2172.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_2172.cfg new file mode 100644 index 00000000..a4da88d2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_2172.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +nl_if_brace = add +pos_enum_comma = trail_force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_681.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_681.cfg new file mode 100644 index 00000000..901b0c8e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/Issue_681.cfg @@ -0,0 +1,3 @@ +nl_oc_before_interface = force +nl_oc_before_end = force +nl_oc_before_implementation = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U08-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U08-Cpp.cfg new file mode 100644 index 00000000..1a8d9ead --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U08-Cpp.cfg @@ -0,0 +1,2 @@ +sp_func_proto_paren = remove +sp_before_byref = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U09-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U09-Cpp.cfg new file mode 100644 index 00000000..e8b4846a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U09-Cpp.cfg @@ -0,0 +1,2 @@ +nl_end_of_file = force +nl_end_of_file_min = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U10-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U10-Cpp.cfg new file mode 100644 index 00000000..76c1c8c3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U10-Cpp.cfg @@ -0,0 +1,6 @@ +sp_func_def_paren = remove +sp_after_send_oc_colon = force +sp_cond_question = add +indent_columns = 4 +indent_with_tabs = 0 +nl_after_func_body = 2 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U11-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U11-Cpp.cfg new file mode 100644 index 00000000..07ba9e26 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U11-Cpp.cfg @@ -0,0 +1,4 @@ +sp_before_sparen = force +sp_after_send_oc_colon = force +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U12-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U12-Cpp.cfg new file mode 100644 index 00000000..581594ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U12-Cpp.cfg @@ -0,0 +1,5 @@ +sp_after_cast = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U13-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U13-Cpp.cfg new file mode 100644 index 00000000..162b13d4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U13-Cpp.cfg @@ -0,0 +1,3 @@ +input_tab_size = 4 +indent_with_tabs = 0 +pp_ignore_define_body = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U14-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U14-Cpp.cfg new file mode 100644 index 00000000..967ea74d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U14-Cpp.cfg @@ -0,0 +1 @@ +sp_func_proto_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U15-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U15-Cpp.cfg new file mode 100644 index 00000000..0d78de45 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U15-Cpp.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U24-Cpp.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U24-Cpp.cfg new file mode 100644 index 00000000..cea571b8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/U24-Cpp.cfg @@ -0,0 +1,4 @@ +input_tab_size = 4 +indent_columns = 4 +pp_ignore_define_body = true +pp_indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/UNI-11095.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/UNI-11095.cfg new file mode 100644 index 00000000..f55a617c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/UNI-11095.cfg @@ -0,0 +1,319 @@ +input_tab_size=4 +string_replace_tab_chars=true +tok_split_gte=false +disable_processing_cmt=*begin-nonstandard-formatting* +enable_processing_cmt=*end-nonstandard-formatting* +utf8_bom=remove +utf8_byte=false +utf8_force=false +indent_columns=4 +indent_with_tabs=0 +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_cs_delegate_brace=true +indent_namespace=true +indent_extern=false +indent_class=true +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=true +indent_func_def_param=true +indent_func_proto_param=true +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_switch_case=4 +indent_case_shift=0 +indent_case_brace=0 +indent_col1_comment=false +indent_label=-4 +indent_access_spec=-4 +indent_paren_nl=false +indent_comma_paren=0 +indent_bool_paren=0 +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_paren=false +indent_oc_block_msg_xcode_style=true +indent_off_after_return_new=true +indent_single_after_return=true +sp_arith=add +sp_assign=add +sp_assign_default=add +sp_enum_assign=add +sp_pp_concat=remove +sp_pp_stringify=remove +sp_bool=add +sp_compare=add +sp_inside_paren=remove +sp_paren_paren=remove +sp_balance_nested_parens=false +sp_paren_brace=force +sp_after_type=ignore +sp_template_angle=remove +sp_before_angle=remove +sp_inside_angle=remove +sp_angle_paren=remove +sp_angle_paren_empty=remove +sp_angle_word=add +sp_angle_shift=remove +sp_before_sparen=force +sp_inside_sparen=remove +sp_after_sparen=add +sp_sparen_brace=force +sp_special_semi=force +sp_before_semi=remove +sp_before_semi_for=remove +sp_before_semi_for_empty=remove +sp_between_semi_for_empty=remove +sp_after_semi=add +sp_after_semi_for=force +sp_after_semi_for_empty=remove +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=add +sp_before_comma=ignore +sp_after_mdatype_commas=remove +sp_before_mdatype_commas=remove +sp_between_mdatype_commas=remove +sp_paren_comma=remove +sp_after_class_colon=force +sp_before_class_colon=force +sp_before_case_colon=remove +sp_after_operator=remove +sp_after_operator_sym=remove +sp_after_operator_sym_empty=remove +sp_after_cast=remove +sp_inside_paren_cast=remove +sp_cpp_cast_paren=remove +sp_sizeof_paren=remove +sp_inside_braces_enum=add +sp_inside_braces_empty=remove +sp_type_func=ignore +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_fparen_brace=add +sp_func_call_paren=remove +sp_func_call_paren_empty=remove +sp_func_call_user_paren=remove +sp_func_class_paren=remove +sp_return_paren=add +sp_defined_paren=remove +sp_throw_paren=add +sp_catch_paren=add +sp_brace_typedef=add +sp_getset_brace=add +sp_after_dc=remove +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=add +sp_after_oc_scope=force +sp_after_oc_colon=remove +sp_before_oc_colon=remove +sp_after_oc_dict_colon=force +sp_before_oc_dict_colon=remove +sp_after_send_oc_colon=force +sp_before_send_oc_colon=remove +sp_after_oc_type=remove +sp_after_oc_return_type=remove +sp_after_oc_at_sel=remove +sp_inside_oc_at_sel_parens=remove +sp_cond_colon=add +sp_cond_question=add +sp_case_label=ignore +sp_after_new=force +sp_between_new_paren=remove +sp_skip_vbrace_tokens=true +align_keep_tabs=false +align_with_tabs=false +align_on_tabstop=false +align_number_right=false +align_func_params=false +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=0 +align_left_shift=false +nl_collapse_empty_body=false +nl_assign_leave_one_liners=true +nl_class_leave_one_liners=true +nl_enum_leave_one_liners=true +nl_getset_leave_one_liners=true +nl_func_leave_one_liners=true +nl_cpp_lambda_leave_one_liners=true +nl_if_leave_one_liners=false +nl_oc_msg_leave_one_liner=true +nl_start_of_file=remove +nl_end_of_file=force +nl_end_of_file_min=1 +nl_assign_brace=force +nl_enum_brace=force +nl_struct_brace=force +nl_union_brace=force +nl_if_brace=force +nl_brace_else=force +nl_else_brace=force +nl_else_if=remove +nl_brace_finally=force +nl_finally_brace=force +nl_try_brace=force +nl_getset_brace=force +nl_for_brace=force +nl_catch_brace=force +nl_brace_catch=force +nl_while_brace=force +nl_using_brace=force +nl_brace_brace=ignore +nl_do_brace=force +nl_brace_while=force +nl_switch_brace=force +nl_multi_line_cond=false +nl_before_case=false +nl_after_case=false +nl_case_colon_brace=force +nl_namespace_brace=force +nl_template_class=ignore +nl_class_brace=force +nl_fdef_brace=force +nl_after_semicolon=false +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_namespace_two_to_one_liner=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +nl_create_func_def_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_max=3 +nl_after_func_body=2 +nl_after_multiline_comment=false +nl_property_brace=force +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +nl_after_return=false +mod_full_brace_if_chain=0 +mod_paren_on_return=ignore +mod_pawn_semicolon=false +mod_full_paren_if_bool=false +mod_remove_extra_semicolon=true +mod_move_case_break=false +mod_remove_empty_return=true +cmt_convert_tab_to_spaces=True +cmt_indent_multi=false +cmt_c_group=false +cmt_c_nl_start=false +cmt_c_nl_end=false +cmt_cpp_group=false +cmt_cpp_nl_start=false +cmt_cpp_nl_end=false +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=false +cmt_insert_before_preproc=false +pp_space_after=ignore +use_options_overriding_for_qt_macros=false +warn_level_tabs_found_in_verbatim_string_literals=1 +# blocked by https://sourceforge.net/p/uncrustify/bugs/619/ +# can be turned back on at any time +mod_add_long_ifdef_else_comment=0 +mod_add_long_ifdef_endif_comment=0 + + + +# Setting this 'false' will cause an extra tab to be added to function call args from an assignment: +# +# x = o.Func2(a, b, +# y); +# o.Func2(a, b, +# y); +# +# ...but setting it 'true' is often worse: +# +# ExtraReallyLongType reallyLongVariableName = someTest +# ? someTrueExpr +# : someFalseExpr +# +# ...except sometimes we really do want that. What we need is an indent_align_assign_threshold, or, +# better but maybe more complicated, indent_align_assign=ignore to leave alone what the engineer did. +# (currently unreported) +indent_align_assign=false + +# this is causing a few problems, but usually with block comments and autodoc markup. perhaps only add a space +# if first letter is not a symbol and this is a standalone comment: not preceded or followed by another c++ +# comment line at the same level of indentation. +# REVISIT: work was done to have it eliminate space for doxygen markup in c6aca7b, maybe can improve on it for us +# (test using Runtime/Allocator/BucketAllocator.h) +# IMPORTANT: see task at https://trello.com/c/wUgiuvbX before going further +#sp_cmt_cpp_start=add +sp_cmt_cpp_start=ignore + +# https://sourceforge.net/p/uncrustify/bugs/619/ +#sp_endif_cmt=force +sp_endif_cmt=ignore + +# want to turn this on, but can't do it without also getting alignment right. try running it on this file as an example: +# Tools\BugReporterV2\qt_face\lib\src\MainWindow.cpp +#nl_cpp_ldef_brace=force + +# workaround for some nasty macroing we're doing +set COMMENT PLATFORM_EXCEPTION_SAFEGUARD_PROLOG + +# without this, uncrustify will parse and process the contents of #defines, which is super unstable. very easy to get into edge cases it does not support, +# so just have it treat #defines as black boxes. this will keep all of the contents of the #define as unprocessed. +pp_ignore_define_body=true + +# macros in #includes aren't known to Uncrustify, so have to inform it here for macros that will confuse it +set MACRO_FUNC ATTRIBUTE_ALIGN + +# we have some truly insane deep namespace nesting in il2cpp. :/ +indent_namespace_single_indent=true + +# needed for fmod apparently (via HEVAGTool.h - the *'s near F_STDCALL will be interpreted as ARITH without this) +set COMMENT F_STDCALL + +# https://github.com/uncrustify/uncrustify/pull/602 +# https://sourceforge.net/p/uncrustify/bugs/633/ +set COMMENT __cdecl +set COMMENT __clrcall +set COMMENT __fastcall +set COMMENT __stdcall +set COMMENT __thiscall +set COMMENT __vectorcall +set COMMENT WINAPI + +# We need to make FAKE_FUNCTION a PROTO_WRAP macro function to help properly tokenize it's parameters. +# Previously parameters with CT_AMP and CT_STAR were tokenized as CT_ARITH. Support for optional parenthesis added in github PR #629. +set PROTO_WRAP FAKE_FUNCTION +nl_create_func_def_one_liner=true +sp_inside_braces=Add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align-objc-like-xcode.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align-objc-like-xcode.cfg new file mode 100644 index 00000000..3b321b11 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align-objc-like-xcode.cfg @@ -0,0 +1,8 @@ +indent_columns = 2 +indent_oc_msg_prioritize_first_colon = false +indent_oc_msg_colon = 0 +align_oc_msg_spec_span = 0 +align_oc_msg_colon_span = 1 +align_oc_msg_colon_first = true +sp_after_send_oc_colon = true +align_oc_msg_colon_xcode_like = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_1.cfg new file mode 100644 index 00000000..61ceb8ce --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_1.cfg @@ -0,0 +1 @@ +align_oc_msg_colon_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_2.cfg new file mode 100644 index 00000000..4496f3cb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_colon_with_ternary_2.cfg @@ -0,0 +1,3 @@ +align_oc_msg_colon_span = 1 +nl_oc_msg_args = true +nl_oc_msg_args_min_params = 3 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_oc_msg_colon_span-1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_oc_msg_colon_span-1.cfg new file mode 100644 index 00000000..9681d152 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/align_oc_msg_colon_span-1.cfg @@ -0,0 +1 @@ +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/block_pointer.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/block_pointer.cfg new file mode 100644 index 00000000..70c21bbd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/block_pointer.cfg @@ -0,0 +1,3 @@ +sp_after_ptr_block_caret = remove # ignore/add/remove/force +sp_before_oc_block_caret = remove # ignore/add/remove/force +sp_after_oc_block_caret = remove # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/blocks.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/blocks.cfg new file mode 100644 index 00000000..65a1c5e2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/blocks.cfg @@ -0,0 +1,28 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_after_oc_block_caret = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_167.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_167.cfg new file mode 100644 index 00000000..6ed02f2e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_167.cfg @@ -0,0 +1,5 @@ +# Add or remove newline between function signature and '{' +nl_fdef_brace = force # ignore/add/remove/force + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = remove # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_340.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_340.cfg new file mode 100644 index 00000000..f56e7a43 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_340.cfg @@ -0,0 +1,7 @@ +sp_before_ptr_star = add +sp_after_oc_colon = remove +sp_after_send_oc_colon = remove +sp_after_oc_type = remove +indent_columns = 2 +eat_blanks_after_open_brace = true +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_841.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_841.cfg new file mode 100644 index 00000000..2ab54cc1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_841.cfg @@ -0,0 +1,3 @@ +align_oc_msg_colon_span = 1 +# +indent_oc_msg_prioritize_first_colon = false diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_i_125-412.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_i_125-412.cfg new file mode 100644 index 00000000..2498ac1b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/bug_i_125-412.cfg @@ -0,0 +1,2 @@ +nl_oc_msg_args = true +align_oc_msg_colon_span = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/delete-space-oc.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/delete-space-oc.cfg new file mode 100644 index 00000000..4d8a15cb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/delete-space-oc.cfg @@ -0,0 +1 @@ +sp_after_oc_colon = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double-indent-objc-dict.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double-indent-objc-dict.cfg new file mode 100644 index 00000000..d4e9a1ae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double-indent-objc-dict.cfg @@ -0,0 +1,4 @@ +indent_align_assign = false +indent_single_after_return = false +indent_continue = 0 +use_indent_continue_only_once = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_1.cfg new file mode 100644 index 00000000..73319da9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_1.cfg @@ -0,0 +1,8 @@ +# (C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note +# that sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = true # true/false + +# Add or remove space between '>' and '>' in '>>' (template stuff). +# +# Default: add +sp_angle_shift = remove # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_2.cfg new file mode 100644 index 00000000..8d12b193 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_2.cfg @@ -0,0 +1,8 @@ +# (C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note +# that sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = true # true/false + +# Add or remove space between '>' and '>' in '>>' (template stuff). +# +# Default: add +sp_angle_shift = add # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_3.cfg new file mode 100644 index 00000000..da6a41c2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/double_angle_space_3.cfg @@ -0,0 +1,8 @@ +# (C++11) Permit removal of the space between '>>' in 'foo<bar<int> >'. Note +# that sp_angle_shift cannot remove the space without this option. +sp_permit_cpp11_shift = true # true/false + +# Add or remove space between '>' and '>' in '>>' (template stuff). +# +# Default: add +sp_angle_shift = ignore # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh137.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh137.cfg new file mode 100644 index 00000000..83da02ee --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh137.cfg @@ -0,0 +1,3 @@ +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.a.cfg new file mode 100644 index 00000000..e875a54b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.a.cfg @@ -0,0 +1,3 @@ +output_tab_size = 4 +indent_columns = 4 +indent_braces = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.b.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.b.cfg new file mode 100644 index 00000000..1dc357ae --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/gh293.b.cfg @@ -0,0 +1,2 @@ +output_tab_size = 4 +indent_columns = 4
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent-objc-block.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent-objc-block.cfg new file mode 100644 index 00000000..aee5aace --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent-objc-block.cfg @@ -0,0 +1,12 @@ +output_tab_size = 2 +indent_columns = output_tab_size +indent_member = output_tab_size +indent_oc_block = false +indent_oc_block_msg = output_tab_size +use_indent_continue_only_once = true +indent_oc_block_msg_xcode_style = true +indent_oc_block_msg_from_keyword = false +indent_oc_block_msg_from_caret = false +indent_oc_block_msg_from_colon = false + +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_boxed.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_boxed.cfg new file mode 100644 index 00000000..e20f0820 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_boxed.cfg @@ -0,0 +1,17 @@ +sp_cond_question_after = remove +sp_cond_question_before = add +align_oc_decl_colon = false +align_oc_msg_colon_first = false +align_oc_msg_colon_span = 10 +align_oc_msg_spec_span = 10 +indent_columns = 4 +indent_continue = 4 +indent_oc_block = false +indent_oc_block_msg = 0 +indent_oc_block_msg_from_brace = false +indent_oc_block_msg_from_caret = false +indent_oc_block_msg_from_colon = false +indent_oc_block_msg_from_keyword = false +indent_oc_block_msg_xcode_style = true +indent_oc_msg_colon = 0 +indent_oc_msg_prioritize_first_colon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_oc_inside_msg_sel.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_oc_inside_msg_sel.cfg new file mode 100644 index 00000000..b140f071 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_oc_inside_msg_sel.cfg @@ -0,0 +1,5 @@ +indent_oc_inside_msg_sel = true +indent_with_tabs = 0 +indent_align_paren = false +align_oc_msg_colon_span = 1 + diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_single_newline.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_single_newline.cfg new file mode 100644 index 00000000..2f146ef8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/indent_single_newline.cfg @@ -0,0 +1,4 @@ +sp_sparen_brace = add +indent_single_newlines = true +indent_columns = 4 # number +indent_with_tabs = 0 # number diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2643.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2643.cfg new file mode 100644 index 00000000..7f188f21 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2643.cfg @@ -0,0 +1,4 @@ +sp_before_oc_block_caret = remove +sp_after_oc_block_caret = force +indent_oc_block = true +indent_oc_block_msg_from_caret = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2656.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2656.cfg new file mode 100644 index 00000000..3b020c33 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2656.cfg @@ -0,0 +1,2 @@ +sp_after_ptr_star = remove +sp_before_ptr_star = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2675.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2675.cfg new file mode 100644 index 00000000..0eab0244 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_2675.cfg @@ -0,0 +1,4 @@ +input_tab_size = 2 +output_tab_size = input_tab_size +macro-open SOME_MACRO_OPEN +macro-close SOME_MACRO_CLOSE diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_3031.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_3031.cfg new file mode 100644 index 00000000..8234c643 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/issue_3031.cfg @@ -0,0 +1,5 @@ +nl_class_colon = force +sp_after_class_colon = force +sp_before_class_colon = force +sp_after_send_oc_colon = remove +sp_before_send_oc_colon = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled.cfg new file mode 100644 index 00000000..d88bf262 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled.cfg @@ -0,0 +1,7 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_prioritize_extensionless = true +mod_sort_incl_import_prioritize_angle_over_quotes = true +mod_sort_incl_import_ignore_extension = true +mod_sort_incl_import_grouping_enabled = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled_with_regex.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled_with_regex.cfg new file mode 100644 index 00000000..5724b52e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_grouping_enabled_with_regex.cfg @@ -0,0 +1,11 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_prioritize_angle_over_quotes = true +mod_sort_incl_import_ignore_extension = true +mod_sort_incl_import_grouping_enabled = true +# All Apple Frameworks +include_category_0 = "<Accelerate/.+|<Accessibility/.+|<Accounts/.+|<AddressBook/.+|<AddressBookUI/.+|<AdServices/.+|<AdSupport/.+|<AppClip/.+|<AppTrackingTransparency/.+|<ARKit/.+|<AssetsLibrary/.+|<AudioToolbox/.+|<AudioUnit/.+|<AuthenticationServices/.+|<AutomaticAssessmentConfiguration/.+|<AVFAudio/.+|<AVFoundation/.+|<AVKit/.+|<BackgroundTasks/.+|<BusinessChat/.+|<CallKit/.+|<CarPlay/.+|<CFNetwork/.+|<CHIP/.+|<ClassKit/.+|<ClockKit/.+|<CloudKit/.+|<Combine/.+|<Contacts/.+|<ContactsUI/.+|<CoreAudio/.+|<CoreAudioKit/.+|<CoreAudioTypes/.+|<CoreBluetooth/.+|<CoreData/.+|<CoreFoundation/.+|<CoreGraphics/.+|<CoreHaptics/.+|<CoreImage/.+|<CoreLocation/.+|<CoreLocationUI/.+|<CoreMedia/.+|<CoreMIDI/.+|<CoreML/.+|<CoreMotion/.+|<CoreNFC/.+|<CoreServices/.+|<CoreSpotlight/.+|<CoreTelephony/.+|<CoreText/.+|<CoreVideo/.+|<CreateML/.+|<CryptoKit/.+|<CryptoTokenKit/.+|<DataDetection/.+|<DeveloperToolsSupport/.+|<DeviceActivity/.+|<DeviceCheck/.+|<EventKit/.+|<EventKitUI/.+|<ExposureNotification/.+|<ExternalAccessory/.+|<FamilyControls/.+|<FileProvider/.+|<FileProviderUI/.+|<Foundation/.+|<GameController/.+|<GameKit/.+|<GameplayKit/.+|<GLKit/.+|<GroupActivities/.+|<GSS/.+|<HealthKit/.+|<HealthKitUI/.+|<HomeKit/.+|<iAd/.+|<IdentityLookup/.+|<IdentityLookupUI/.+|<ImageCaptureCore/.+|<ImageIO/.+|<Intents/.+|<IntentsUI/.+|<IOKit/.+|<IOSurface/.+|<JavaScriptCore/.+|<LinkPresentation/.+|<LocalAuthentication/.+|<ManagedSettings/.+|<ManagedSettingsUI/.+|<MapKit/.+|<MediaAccessibility/.+|<MediaPlayer/.+|<MediaSetup/.+|<MediaToolbox/.+|<Messages/.+|<MessageUI/.+|<Metal/.+|<MetalKit/.+|<MetalPerformanceShaders/.+|<MetalPerformanceShadersGraph/.+|<MetricKit/.+|<MLCompute/.+|<MobileCoreServices/.+|<ModelIO/.+|<MPSCore/.+|<MPSFunctions/.+|<MPSImage/.+|<MPSMatrix/.+|<MPSNDArray/.+|<MPSNeuralNetwork/.+|<MPSRayIntersector/.+|<MultipeerConnectivity/.+|<MusicKit/.+|<NaturalLanguage/.+|<NearbyInteraction/.+|<Network/.+|<NetworkExtension/.+|<NewsstandKit/.+|<NotificationCenter/.+|<OpenAL/.+|<OpenGLES/.+|<OSLog/.+|<PassKit/.+|<PDFKit/.+|<PencilKit/.+|<PHASE/.+|<Photos/.+|<PhotosUI/.+|<PushKit/.+|<QuartzCore/.+|<QuickLook/.+|<QuickLookThumbnailing/.+|<RealityFoundation/.+|<RealityKit/.+|<ReplayKit/.+|<SafariServices/.+|<SceneKit/.+|<ScreenTime/.+|<Security/.+|<SensorKit/.+|<ShazamKit/.+|<Social/.+|<SoundAnalysis/.+|<Speech/.+|<SpriteKit/.+|<StoreKit/.+|<SwiftUI/.+|<SystemConfiguration/.+|<TabularData/.+|<ThreadNetwork/.+|<Twitter/.+|<UIKit/.+|<UniformTypeIdentifiers/.+|<UserNotifications/.+|<UserNotificationsUI/.+|<vecLib/.+|<VideoSubscriberAccount/.+|<VideoToolbox/.+|<vImage/.+|<Vision/.+|<VisionKit/.+|<WatchConnectivity/.+|<WebKit/.+|<WidgetKit/.+" +# All headers which are not "LowPriority" headers +include_category_1 = "^((?!LowPriority\-\\d+\.h>).)*" +# Remainder is implicity "LowPriority" headers diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_ignore_extension.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_ignore_extension.cfg new file mode 100644 index 00000000..d49491cb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_ignore_extension.cfg @@ -0,0 +1,4 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_ignore_extension = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_angle_over_quotes.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_angle_over_quotes.cfg new file mode 100644 index 00000000..475ab734 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_angle_over_quotes.cfg @@ -0,0 +1,4 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_prioritize_angle_over_quotes = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_extensionless.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_extensionless.cfg new file mode 100644 index 00000000..aa9eb1db --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_extensionless.cfg @@ -0,0 +1,4 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_prioritize_extensionless = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_filename.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_filename.cfg new file mode 100644 index 00000000..2661a68a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/mod_sort_incl_import_prioritize_filename.cfg @@ -0,0 +1,4 @@ +mod_sort_import = true +mod_sort_using = true +mod_sort_include = true +mod_sort_incl_import_prioritize_filename = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_after_func_body-3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_after_func_body-3.cfg new file mode 100644 index 00000000..65f1fa5a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_after_func_body-3.cfg @@ -0,0 +1,4 @@ +output_tab_size = 4 +indent_columns = 4 +nl_after_func_body = 3 +indent_oc_inside_msg_sel = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_brace_square.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_brace_square.cfg new file mode 100644 index 00000000..60d2fb97 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_brace_square.cfg @@ -0,0 +1,25 @@ +sp_arith = force +sp_before_ptr_star = force +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_after_oc_block_caret = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_func_call_args_multi_line_ignore_closures.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_func_call_args_multi_line_ignore_closures.cfg new file mode 100644 index 00000000..e480140e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_func_call_args_multi_line_ignore_closures.cfg @@ -0,0 +1,4 @@ +nl_func_call_start_multi_line = true +nl_func_call_args_multi_line = true +nl_func_call_end_multi_line = true +nl_func_call_args_multi_line_ignore_closures = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_block_brace-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_block_brace-f.cfg new file mode 100644 index 00000000..824fc747 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_block_brace-f.cfg @@ -0,0 +1 @@ +nl_oc_block_brace = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_max_code_width.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_max_code_width.cfg new file mode 100644 index 00000000..197f0eb3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_max_code_width.cfg @@ -0,0 +1,5 @@ +nl_oc_msg_args = true +nl_oc_msg_args_max_code_width = 100 +indent_columns = 4 +indent_with_tabs = 0 +align_oc_msg_colon_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_min_params.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_min_params.cfg new file mode 100644 index 00000000..d0d3f935 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/nl_oc_msg_args_min_params.cfg @@ -0,0 +1,5 @@ +nl_oc_msg_args = true +nl_oc_msg_args_min_params = 4 +indent_columns = 4 +indent_with_tabs = 0 +align_oc_msg_colon_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-available.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-available.cfg new file mode 100644 index 00000000..f77790fc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-available.cfg @@ -0,0 +1,2 @@ +indent_columns = 4 # number +indent_with_tabs = 0 # number diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-properties.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-properties.cfg new file mode 100644 index 00000000..98241779 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/obj-c-properties.cfg @@ -0,0 +1,8 @@ +sp_inside_paren = remove +mod_sort_oc_properties = true +mod_sort_oc_property_thread_safe_weight = 6 +mod_sort_oc_property_readwrite_weight = 5 +mod_sort_oc_property_reference_weight = 4 +mod_sort_oc_property_getter_weight = 2 +mod_sort_oc_property_nullability_weight = 3 +mod_sort_oc_property_class_weight = 7 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_bug_497.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_bug_497.cfg new file mode 100644 index 00000000..0015f97d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_bug_497.cfg @@ -0,0 +1,2 @@ +indent_continue = 10 +indent_with_tabs = 0
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_complex_method.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_complex_method.cfg new file mode 100644 index 00000000..8d82b960 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/objc_complex_method.cfg @@ -0,0 +1,7 @@ +sp_after_ptr_star = force +sp_after_oc_return_type = force +indent_columns = 4 +indent_with_tabs = 0 +nl_var_def_blk_end_func_top = 1 +align_oc_msg_colon_span = 1 +cmt_star_cont = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc1.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc1.cfg new file mode 100644 index 00000000..659131cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc1.cfg @@ -0,0 +1,8 @@ +output_tab_size = 3 +sp_after_oc_colon = force +sp_before_oc_colon = remove +sp_after_oc_type = force +indent_columns = output_tab_size +indent_with_tabs = 0 +nl_fdef_brace = add +align_oc_msg_spec_span = 2
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc10.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc10.cfg new file mode 100644 index 00000000..d50a20d8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc10.cfg @@ -0,0 +1,12 @@ +sp_before_ptr_star = force +sp_inside_square = remove +sp_after_comma = force +sp_inside_fparen = remove +sp_func_call_paren = remove +sp_after_oc_scope = remove +sp_after_oc_msg_receiver = force +indent_columns = 3 +nl_fdef_brace = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc11.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc11.cfg new file mode 100644 index 00000000..e355d765 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc11.cfg @@ -0,0 +1,13 @@ +sp_inside_braces = force +sp_after_send_oc_colon = force +sp_cond_ternary_short = remove +sp_cond_colon = add +sp_cond_question = add +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_after_semicolon = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 +align_oc_msg_colon_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc12.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc12.cfg new file mode 100644 index 00000000..4f069fed --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc12.cfg @@ -0,0 +1,5 @@ +sp_after_angle = force +sp_after_cast = remove +sp_after_oc_scope = remove +indent_columns = 3 +nl_for_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc13.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc13.cfg new file mode 100644 index 00000000..4466b37a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc13.cfg @@ -0,0 +1,14 @@ +sp_after_oc_scope = remove +sp_after_send_oc_colon = force +indent_columns = 3 +indent_continue = 3 +indent_align_assign = false +nl_var_def_blk_end_func_top = 1 +nl_fdef_brace = add +nl_after_brace_open = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc14.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc14.cfg new file mode 100644 index 00000000..a44950db --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc14.cfg @@ -0,0 +1,8 @@ +sp_after_send_oc_colon = force +indent_columns = 3 +indent_oc_block = true +nl_oc_msg_args = true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_oc_msg_colon_span = 1 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc16.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc16.cfg new file mode 100644 index 00000000..5eec46e9 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc16.cfg @@ -0,0 +1,8 @@ +sp_after_ptr_star = remove +sp_after_send_oc_colon = force +indent_columns = 3 +indent_oc_block = true +nl_for_brace = add +nl_oc_msg_args = true +align_oc_msg_colon_span = 1 +indent_with_tabs = 0 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc17.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc17.cfg new file mode 100644 index 00000000..18b27823 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc17.cfg @@ -0,0 +1,3 @@ +indent_columns = 3 +align_var_def_span = 2 +align_assign_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc18.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc18.cfg new file mode 100644 index 00000000..96003cf5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc18.cfg @@ -0,0 +1,9 @@ +indent_columns = 3 +indent_continue = 3 +indent_align_assign = false +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_after_brace_open = true +align_var_def_span = 2 +align_var_def_star_style = 1 +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc19.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc19.cfg new file mode 100644 index 00000000..d68c95f0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc19.cfg @@ -0,0 +1,10 @@ +sp_after_oc_scope = remove +indent_columns = 3 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_switch_brace = add +nl_fdef_brace = add +eat_blanks_after_open_brace = true + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc2.cfg new file mode 100644 index 00000000..43d02a66 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc2.cfg @@ -0,0 +1,6 @@ +sp_inside_fparen = remove +indent_columns = 3 +nl_fdef_brace = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc4.cfg new file mode 100644 index 00000000..f2de050e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc4.cfg @@ -0,0 +1,9 @@ +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_before_oc_colon = remove +sp_after_oc_type = force +indent_columns = 3 +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc5.cfg new file mode 100644 index 00000000..77a7a7af --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc5.cfg @@ -0,0 +1,6 @@ +sp_before_angle = remove +sp_after_oc_colon = force +sp_after_oc_type = force +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_fdef_brace = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc6.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc6.cfg new file mode 100644 index 00000000..c1bcd8d4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc6.cfg @@ -0,0 +1,8 @@ +sp_inside_fparen = remove +sp_after_send_oc_colon = force +indent_columns = 3 +nl_finally_brace = add +nl_try_brace = add +nl_catch_brace = add +nl_fdef_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc7.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc7.cfg new file mode 100644 index 00000000..972ab19a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc7.cfg @@ -0,0 +1,14 @@ +sp_compare = force +sp_after_comma = force +sp_inside_braces = force +sp_after_oc_scope = remove +sp_before_oc_colon = remove +sp_after_send_oc_colon = force +indent_columns = 3 +nl_oc_msg_leave_one_liner = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_for_brace = add +nl_oc_msg_args = true +align_assign_span = 1 +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc8.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc8.cfg new file mode 100644 index 00000000..3f577ab8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc8.cfg @@ -0,0 +1,14 @@ +sp_inside_paren = remove +sp_before_angle = remove +sp_inside_angle = remove +sp_after_angle = force +sp_inside_sparen = remove +sp_inside_fparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +indent_columns = 3 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_if_brace = add +mod_full_brace_if = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc9.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc9.cfg new file mode 100644 index 00000000..92ed39d4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc9.cfg @@ -0,0 +1,7 @@ +sp_after_comma = force +indent_columns = 3 +indent_continue = 3 +indent_align_assign = false +nl_fdef_brace = add +nl_after_brace_open = true +align_assign_span = 1 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1674.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1674.cfg new file mode 100644 index 00000000..31e4537c --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1674.cfg @@ -0,0 +1,49 @@ +# File Created With UncrustifyX 0.4.3 (252) + +sp_enum_paren = remove +sp_cond_ternary_short = remove +indent_paren_open_brace = true + +align_oc_decl_colon = true +align_oc_msg_colon_span = 1 +nl_after_func_body = 2 +mod_full_brace_do = add +mod_full_brace_if = add +mod_full_brace_for = add +mod_full_brace_while = add +indent_oc_block = true +indent_columns = 4 +indent_switch_case = 4 +indent_with_tabs = 0 +nl_after_brace_close = true +nl_after_brace_open = true +nl_after_case = true +nl_brace_while = remove +nl_collapse_empty_body = false +nl_end_of_file = add +sp_after_oc_block_caret = remove +sp_after_oc_colon = remove +sp_after_send_oc_colon = remove +sp_after_oc_property = add +sp_after_oc_return_type = remove +sp_after_oc_scope = force +sp_after_oc_type = remove +sp_after_angle = add +sp_after_comma = add +sp_after_sparen = add +sp_after_ptr_star = remove +sp_arith = add +sp_assign = add +sp_bool = add +sp_compare = add +sp_member = remove +sp_cond_colon = add +sp_cond_question = add +sp_before_oc_block_caret = ignore +sp_before_oc_colon = remove +sp_before_send_oc_colon = remove +sp_before_sparen = add +sp_before_ptr_star = add +sp_before_unnamed_ptr_star = add +sp_angle_word = add +sp_between_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1683.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1683.cfg new file mode 100644 index 00000000..b5d4249d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_bug_1683.cfg @@ -0,0 +1 @@ +nl_after_brace_close = true # boolean (false/true) diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_cond_colon.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_cond_colon.cfg new file mode 100644 index 00000000..b86516e0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/oc_cond_colon.cfg @@ -0,0 +1,5 @@ +sp_before_send_oc_colon = force +sp_after_send_oc_colon = force +sp_cond_colon = remove +# without this, no_space_table's {CT_UNKNOWN,CT_SQUARE_OPEN} combo removes the space between ? and CT_SQUARE_OPEN, but not between ? and CT_WORD +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_add.cfg new file mode 100644 index 00000000..817ec7c5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_add.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +sp_inside_square = remove +sp_after_oc_at_sel = add +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_force.cfg new file mode 100644 index 00000000..b2a79b8f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_force.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +sp_inside_square = remove +sp_after_oc_at_sel = force +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_remove.cfg new file mode 100644 index 00000000..98b6de42 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_at_sel_remove.cfg @@ -0,0 +1,5 @@ +sp_inside_paren = remove +sp_inside_square = remove +sp_after_oc_at_sel = remove +nl_end_of_file = force +nl_end_of_file_min = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_add.cfg new file mode 100644 index 00000000..e5e4fcdf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_add.cfg @@ -0,0 +1,28 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_after_oc_block_caret = add +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_force.cfg new file mode 100644 index 00000000..3194126d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_block_caret_force.cfg @@ -0,0 +1,28 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_after_oc_block_caret = force +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_add.cfg new file mode 100644 index 00000000..b321b9aa --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_add.cfg @@ -0,0 +1,9 @@ +sp_after_oc_colon = force +sp_after_oc_type = force +sp_after_oc_return_type = add +indent_columns = 4 +nl_fdef_brace = force +align_oc_msg_spec_span = 2 + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_force.cfg new file mode 100644 index 00000000..fb8b9a1b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_force.cfg @@ -0,0 +1,9 @@ +sp_after_oc_colon = force +sp_after_oc_type = force +sp_after_oc_return_type = force +indent_columns = 4 +nl_fdef_brace = force +align_oc_msg_spec_span = 2 + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_remove.cfg new file mode 100644 index 00000000..1110a1eb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_oc_return_type_remove.cfg @@ -0,0 +1,9 @@ +sp_after_oc_colon = force +sp_after_oc_type = force +sp_after_oc_return_type = remove +indent_columns = 4 +nl_fdef_brace = force +align_oc_msg_spec_span = 2 + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_send_oc_colon-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_send_oc_colon-f.cfg new file mode 100644 index 00000000..2a54dd6f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_send_oc_colon-f.cfg @@ -0,0 +1 @@ +sp_after_send_oc_colon = force
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_throw_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_throw_remove.cfg new file mode 100644 index 00000000..6b6bc0ac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_after_throw_remove.cfg @@ -0,0 +1,9 @@ +sp_inside_fparen = remove +sp_after_throw = remove +sp_after_send_oc_colon = force +indent_columns = 3 +nl_finally_brace = add +nl_try_brace = add +nl_catch_brace = add +nl_fdef_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_force.cfg new file mode 100644 index 00000000..bd8863a3 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_force.cfg @@ -0,0 +1,27 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_after_oc_block_caret = remove +indent_columns = 4 +indent_with_tabs = 0 +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_remove.cfg new file mode 100644 index 00000000..2a001cbc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_block_caret_remove.cfg @@ -0,0 +1,29 @@ +sp_arith = force +sp_before_ptr_star = force +sp_after_ptr_star = remove +sp_ptr_star_paren = remove +sp_inside_tparen = remove +sp_after_oc_scope = remove +sp_after_oc_colon = force +sp_after_send_oc_colon = force +sp_after_oc_type = force +sp_before_oc_block_caret = remove +sp_after_oc_block_caret = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +nl_end_of_file = force +nl_end_of_file_min = 1 +nl_var_def_blk_end_func_top = 1 +nl_if_brace = add +nl_for_brace = add +nl_while_brace = add +nl_fdef_brace = add +nl_after_semicolon = true +nl_after_brace_open = true +mod_full_brace_for = add +mod_full_brace_if = add +mod_full_brace_while = add + +# Add or remove newline between method declaration and '{' +nl_oc_mdef_brace = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_add.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_add.cfg new file mode 100644 index 00000000..3374e228 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_add.cfg @@ -0,0 +1,2 @@ +sp_before_oc_proto_list = add +sp_oc_classname_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_force.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_force.cfg new file mode 100644 index 00000000..5be78fac --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_force.cfg @@ -0,0 +1,2 @@ +sp_before_oc_proto_list = force +sp_oc_classname_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_remove.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_remove.cfg new file mode 100644 index 00000000..9f93f4a5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_before_oc_proto_list_remove.cfg @@ -0,0 +1,2 @@ +sp_before_oc_proto_list = remove +sp_oc_classname_paren = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument.cfg new file mode 100644 index 00000000..60c651fb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument.cfg @@ -0,0 +1,8 @@ +sp_after_send_oc_colon = force +sp_before_oc_block_caret = remove +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +indent_oc_block_msg_from_keyword = true +nl_if_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument2.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument2.cfg new file mode 100644 index 00000000..8f297d7d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument2.cfg @@ -0,0 +1,7 @@ +sp_after_send_oc_colon = force +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +indent_oc_block_msg_from_colon = true +nl_if_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument3.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument3.cfg new file mode 100644 index 00000000..17059e47 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument3.cfg @@ -0,0 +1,7 @@ +sp_after_send_oc_colon = force +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +indent_oc_block_msg_from_brace = true +nl_if_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument4.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument4.cfg new file mode 100644 index 00000000..8caf60bc --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument4.cfg @@ -0,0 +1,7 @@ +sp_after_send_oc_colon = force +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block = true +indent_oc_block_msg_from_caret = true +nl_if_brace = add +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument5.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument5.cfg new file mode 100644 index 00000000..42e8c380 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_block_as_argument5.cfg @@ -0,0 +1,8 @@ +sp_after_send_oc_colon = force +indent_columns = 4 +indent_with_tabs = 0 +indent_oc_block_msg_xcode_style = true +nl_oc_msg_args = true +eat_blanks_after_open_brace = true +eat_blanks_before_close_brace = true +align_oc_msg_colon_span = 1
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_cond_ternary_short.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_cond_ternary_short.cfg new file mode 100644 index 00000000..564b2dcf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_cond_ternary_short.cfg @@ -0,0 +1 @@ +sp_cond_ternary_short = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-i.cfg new file mode 100644 index 00000000..5bb98ec2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-i.cfg @@ -0,0 +1 @@ +sp_enum_paren = ignore diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-r.cfg new file mode 100644 index 00000000..f155e201 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_enum_paren-r.cfg @@ -0,0 +1 @@ +sp_enum_paren = remove
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_boxed.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_boxed.cfg new file mode 100644 index 00000000..73939de1 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_boxed.cfg @@ -0,0 +1,4 @@ +sp_after_oc_dict_colon = add # ignore/add/remove/force +sp_before_oc_dict_colon = remove # ignore/add/remove/force +sp_inside_square_oc_array = add # ignore/add/remove/force +sp_inside_braces_oc_dict = add # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-i.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-i.cfg new file mode 100644 index 00000000..46276a43 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-i.cfg @@ -0,0 +1,12 @@ +sp_sparen_brace = add +sp_oc_catch_paren = ignore +sp_catch_paren = add +sp_oc_catch_brace = add +sp_catch_brace = force +sp_oc_brace_catch = add +sp_brace_catch = force +nl_oc_catch_brace = remove +nl_catch_brace = remove +nl_oc_brace_catch = add +nl_brace_catch = remove +sp_finally_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-r.cfg new file mode 100644 index 00000000..3f582f7b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch-r.cfg @@ -0,0 +1,12 @@ +sp_sparen_brace = add +sp_oc_catch_paren = remove +sp_catch_paren = add +sp_oc_catch_brace = add +sp_catch_brace = force +sp_oc_brace_catch = add +sp_brace_catch = force +nl_oc_catch_brace = remove +nl_catch_brace = remove +nl_oc_brace_catch = add +nl_brace_catch = remove +sp_finally_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch.cfg new file mode 100644 index 00000000..bb9f73fb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_catch.cfg @@ -0,0 +1,12 @@ +sp_sparen_brace = add +sp_oc_catch_paren = force +sp_catch_paren = add # ignore/add/remove/force +sp_oc_catch_brace = add # ignore/add/remove/force +sp_catch_brace = force # ignore/add/remove/force +sp_oc_brace_catch = add # ignore/add/remove/force +sp_brace_catch = force # ignore/add/remove/force +nl_oc_catch_brace = remove # ignore/add/remove/force +nl_catch_brace = remove # ignore/add/remove/force +nl_oc_brace_catch = add # ignore/add/remove/force +nl_brace_catch = remove # ignore/add/remove/force +sp_finally_brace = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_classname_paren-r.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_classname_paren-r.cfg new file mode 100644 index 00000000..ba92279e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_classname_paren-r.cfg @@ -0,0 +1,4 @@ +sp_before_angle = remove +sp_angle_colon = remove +sp_after_class_colon = remove +sp_oc_classname_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_synchronized.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_synchronized.cfg new file mode 100644 index 00000000..f9bd3517 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/sp_oc_synchronized.cfg @@ -0,0 +1,2 @@ +sp_sparen_brace = add +sp_after_oc_synchronized = force # ignore/add/remove/force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/ternary_short.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/ternary_short.cfg new file mode 100644 index 00000000..55e708cf --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/oc/ternary_short.cfg @@ -0,0 +1,4 @@ +sp_cond_colon_after = add +sp_cond_question_after = add +sp_cond_question_before = add +sp_cond_ternary_short = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2586.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2586.cfg new file mode 100644 index 00000000..ff46f80d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2586.cfg @@ -0,0 +1,4 @@ +sp_assign = force
+indent_columns = 4
+nl_end_of_file = remove
+pos_assign = join
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2665.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2665.cfg new file mode 100644 index 00000000..763864c0 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/Issue_2665.cfg @@ -0,0 +1,2 @@ +nl_end_of_file = remove +sp_func_def_paren = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/amxmodx.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/amxmodx.cfg new file mode 100644 index 00000000..95ca5a4d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/amxmodx.cfg @@ -0,0 +1,20 @@ +# AMX Mod X style for Pawn (or as close as possible) +output_tab_size = 4 +sp_arith = force +sp_assign = force +sp_before_sparen = force +sp_after_comma = force +sp_inside_fparen = remove +sp_while_paren_open = force +indent_columns = 4 +pp_multiline_define_body_indent = 4 +nl_if_brace = add +nl_else_brace = add +align_with_tabs = true +align_on_tabstop = true +align_right_cmt_span = 8 +align_pp_define_span = 1 +mod_pawn_semicolon = true + +# not needed but without this option, 60030 is unstable! +input_tab_size = 4 # tab size on input file: usually 8 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/mod_full_brace_function-f.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/mod_full_brace_function-f.cfg new file mode 100644 index 00000000..8d44cc3b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/mod_full_brace_function-f.cfg @@ -0,0 +1 @@ +mod_full_brace_function = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn-escape.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn-escape.cfg new file mode 100644 index 00000000..ae141f03 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn-escape.cfg @@ -0,0 +1,5 @@ +sp_sparen_brace = add +string_escape_char = 94 # '^' +indent_columns = 4 +indent_with_tabs = 0 +mod_pawn_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn.cfg new file mode 100644 index 00000000..ed66c177 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/pawn/pawn.cfg @@ -0,0 +1,17 @@ +input_tab_size = 4 +sp_sparen_brace = add +sp_arith = force +sp_after_tag = remove +sp_inside_braces = add +sp_brace_else = force +sp_else_brace = force +sp_func_call_paren = remove +#sp_func_call_paren = force +indent_columns = 4 +indent_with_tabs = 0 +nl_brace_else = remove +nl_fdef_brace = force +mod_full_brace_for = add +mod_full_brace_function = add +mod_full_brace_if = add +mod_pawn_semicolon = true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-58354.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-58354.cfg new file mode 100644 index 00000000..fb9ca61b --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-58354.cfg @@ -0,0 +1,6 @@ +indent_with_tabs=0 +indent_columns=4 +indent_class=true +nl_class_leave_one_liners=true + +mod_remove_extra_semicolon=true diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-64325.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-64325.cfg new file mode 100644 index 00000000..44ee8b48 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/staging/UNI-64325.cfg @@ -0,0 +1,3 @@ +indent_class=true +indent_with_tabs=0 +indent_columns=4 diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2090.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2090.cfg new file mode 100644 index 00000000..154cff70 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2090.cfg @@ -0,0 +1,2 @@ +sp_before_ptr_star = force +sp_cond_question = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2270.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2270.cfg new file mode 100644 index 00000000..43cc3757 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/Issue_2270.cfg @@ -0,0 +1 @@ +sp_vala_after_translation = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_100.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_100.cfg new file mode 100644 index 00000000..81cd4430 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_100.cfg @@ -0,0 +1,9 @@ +sp_inside_sparen = remove +sp_inside_for = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_for_brace = add +nl_fdef_brace = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_101.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_101.cfg new file mode 100644 index 00000000..50078f96 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_101.cfg @@ -0,0 +1,10 @@ +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_for_brace = add +nl_fdef_brace = add +mod_paren_on_return = add +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_102.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_102.cfg new file mode 100644 index 00000000..3a37ba17 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_102.cfg @@ -0,0 +1,13 @@ +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +nl_for_brace = add +nl_fdef_brace = add +align_var_def_span = 2 +align_assign_span = 1 +mod_paren_on_return = add +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_103.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_103.cfg new file mode 100644 index 00000000..e7bc6b90 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_103.cfg @@ -0,0 +1,14 @@ +output_tab_size = 3 +sp_func_proto_paren = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +indent_class = true +nl_var_def_blk_end_func_top = 1 +nl_for_brace = add +nl_fdef_brace = add +align_var_def_span = 2 +align_assign_span = 1 +mod_paren_on_return = add +mod_remove_extra_semicolon = true
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_104.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_104.cfg new file mode 100644 index 00000000..80870cfe --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_104.cfg @@ -0,0 +1,10 @@ +sp_inside_paren = remove +sp_paren_paren = remove +sp_func_def_paren = remove +sp_inside_fparen = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_with_tabs = 0 +nl_fdef_brace = add +nl_after_semicolon = true +mod_paren_on_return = add
\ No newline at end of file diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_105.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_105.cfg new file mode 100644 index 00000000..23452bfd --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/ben_105.cfg @@ -0,0 +1,13 @@ +sp_inside_paren = remove +sp_after_cast = remove +sp_func_def_paren = remove +sp_func_call_paren = remove +indent_columns = 3 +indent_switch_body = 3 +indent_with_tabs = 0 +nl_if_brace = add +nl_switch_brace = add +nl_before_case = true +nl_fdef_brace = add +mod_full_brace_if = add +mod_paren_on_return = add diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_a.cfg new file mode 100644 index 00000000..b0a66bcb --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_a.cfg @@ -0,0 +1,4 @@ +sp_after_comma = add +sp_after_mdatype_commas = force +sp_before_mdatype_commas = force +sp_between_mdatype_commas = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_c.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_c.cfg new file mode 100644 index 00000000..a8eaaaa2 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/mda_space_c.cfg @@ -0,0 +1,2 @@ +sp_after_comma = add +sp_between_mdatype_commas = force diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/nullable.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/nullable.cfg new file mode 100644 index 00000000..5c47913d --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/nullable.cfg @@ -0,0 +1 @@ +sp_before_ptr_star = remove diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/sp_after_comma-a.cfg b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/sp_after_comma-a.cfg new file mode 100644 index 00000000..35ee933a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/config/vala/sp_after_comma-a.cfg @@ -0,0 +1 @@ +sp_after_comma = add |