Update uncrustify config file
This commit is contained in:
parent
6d891216cf
commit
5a1a9d92a5
@ -1,4 +1,8 @@
|
|||||||
|
# Uncrustify-0.78.1
|
||||||
|
|
||||||
|
#
|
||||||
# General options
|
# General options
|
||||||
|
#
|
||||||
|
|
||||||
# The type of line endings.
|
# The type of line endings.
|
||||||
#
|
#
|
||||||
@ -72,15 +76,15 @@ utf8_force = false # true/false
|
|||||||
|
|
||||||
# Add or remove space around non-assignment symbolic operators ('+', '/', '%',
|
# Add or remove space around non-assignment symbolic operators ('+', '/', '%',
|
||||||
# '<<', and so forth).
|
# '<<', and so forth).
|
||||||
sp_arith = add # ignore/add/remove/force/not_defined
|
sp_arith = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space around arithmetic operators '+' and '-'.
|
# Add or remove space around arithmetic operators '+' and '-'.
|
||||||
#
|
#
|
||||||
# Overrides sp_arith.
|
# Overrides sp_arith.
|
||||||
sp_arith_additive = add # ignore/add/remove/force/not_defined
|
sp_arith_additive = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space around assignment operator '=', '+=', etc.
|
# Add or remove space around assignment operator '=', '+=', etc.
|
||||||
sp_assign = add # ignore/add/remove/force/not_defined
|
sp_assign = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space around '=' in C++11 lambda capture specifications.
|
# Add or remove space around '=' in C++11 lambda capture specifications.
|
||||||
#
|
#
|
||||||
@ -95,6 +99,12 @@ sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force/not_defined
|
|||||||
# no argument list is present, as in '[] <here> { ... }'.
|
# no argument list is present, as in '[] <here> { ... }'.
|
||||||
sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force/not_defined
|
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> ){ ... }'
|
||||||
|
# with an empty list.
|
||||||
|
sp_cpp_lambda_argument_list_empty = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space after the opening parenthesis and before the closing
|
# Add or remove space after the opening parenthesis and before the closing
|
||||||
# parenthesis of a argument list of a C++11 lambda, as in
|
# parenthesis of a argument list of a C++11 lambda, as in
|
||||||
# '[]( <here> int x <here> ){ ... }'.
|
# '[]( <here> int x <here> ){ ... }'.
|
||||||
@ -170,10 +180,10 @@ sp_compare = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_inside_paren = ignore # ignore/add/remove/force/not_defined
|
sp_inside_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between nested parentheses, i.e. '((' vs. ') )'.
|
# Add or remove space between nested parentheses, i.e. '((' vs. ') )'.
|
||||||
sp_paren_paren = remove # ignore/add/remove/force/not_defined
|
sp_paren_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('.
|
# Add or remove space between back-to-back parentheses, i.e. ')(' vs. ') ('.
|
||||||
sp_cparen_oparen = add # ignore/add/remove/force/not_defined
|
sp_cparen_oparen = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Whether to balance spaces inside nested parentheses.
|
# Whether to balance spaces inside nested parentheses.
|
||||||
sp_balance_nested_parens = false # true/false
|
sp_balance_nested_parens = false # true/false
|
||||||
@ -182,7 +192,7 @@ sp_balance_nested_parens = false # true/false
|
|||||||
sp_paren_brace = ignore # ignore/add/remove/force/not_defined
|
sp_paren_brace = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between nested braces, i.e. '{{' vs. '{ {'.
|
# Add or remove space between nested braces, i.e. '{{' vs. '{ {'.
|
||||||
sp_brace_brace = remove # ignore/add/remove/force/not_defined
|
sp_brace_brace = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space before pointer star '*'.
|
# Add or remove space before pointer star '*'.
|
||||||
sp_before_ptr_star = ignore # ignore/add/remove/force/not_defined
|
sp_before_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
@ -191,19 +201,46 @@ sp_before_ptr_star = ignore # ignore/add/remove/force/not_defined
|
|||||||
# variable name. If set to ignore, sp_before_ptr_star is used instead.
|
# 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
|
sp_before_unnamed_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space before pointer star '*' that is followed by a qualifier.
|
||||||
|
# If set to ignore, sp_before_unnamed_ptr_star is used instead.
|
||||||
|
sp_before_qualifier_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space before pointer star '*' that is followed by 'operator' keyword.
|
||||||
|
# If set to ignore, sp_before_unnamed_ptr_star is used instead.
|
||||||
|
sp_before_operator_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space before pointer star '*' that is followed by
|
||||||
|
# a class scope (as in 'int *MyClass::method()') or namespace scope
|
||||||
|
# (as in 'int *my_ns::func()').
|
||||||
|
# If set to ignore, sp_before_unnamed_ptr_star is used instead.
|
||||||
|
sp_before_scope_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space before pointer star '*' that is followed by '::',
|
||||||
|
# as in 'int *::func()'.
|
||||||
|
# If set to ignore, sp_before_unnamed_ptr_star is used instead.
|
||||||
|
sp_before_global_scope_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;'.
|
# Add or remove space between pointer stars '*', as in 'int ***a;'.
|
||||||
sp_between_ptr_star = remove # ignore/add/remove/force/not_defined
|
sp_between_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space between pointer star '*' and reference '&', as in 'int *& a;'.
|
||||||
|
sp_between_ptr_ref = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space after pointer star '*', if followed by a word.
|
# Add or remove space after pointer star '*', if followed by a word.
|
||||||
#
|
#
|
||||||
# Overrides sp_type_func.
|
# Overrides sp_type_func.
|
||||||
sp_after_ptr_star = remove # ignore/add/remove/force/not_defined
|
sp_after_ptr_star = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space after pointer caret '^', if followed by a word.
|
# Add or remove space after pointer caret '^', if followed by a word.
|
||||||
sp_after_ptr_block_caret = ignore # ignore/add/remove/force/not_defined
|
sp_after_ptr_block_caret = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space after pointer star '*', if followed by a qualifier.
|
# Add or remove space after pointer star '*', if followed by a qualifier.
|
||||||
sp_after_ptr_star_qualifier = remove # ignore/add/remove/force/not_defined
|
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
|
# Add or remove space after a pointer star '*', if followed by a function
|
||||||
# prototype or function definition.
|
# prototype or function definition.
|
||||||
@ -228,15 +265,26 @@ sp_ptr_star_func_type = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_ptr_star_paren = ignore # ignore/add/remove/force/not_defined
|
sp_ptr_star_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space before a pointer star '*', if followed by a function
|
# Add or remove space before a pointer star '*', if followed by a function
|
||||||
# prototype or function definition.
|
# 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
|
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
|
# Add or remove space before a pointer star '*' in the trailing return of a
|
||||||
# function prototype or function definition.
|
# function prototype or function definition.
|
||||||
sp_before_ptr_star_trailing = ignore # ignore/add/remove/force/not_defined
|
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 '&'.
|
# Add or remove space before a reference sign '&'.
|
||||||
sp_before_byref = remove # ignore/add/remove/force/not_defined
|
sp_before_byref = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space before a reference sign '&' that isn't followed by a
|
# 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.
|
# variable name. If set to ignore, sp_before_byref is used instead.
|
||||||
@ -293,6 +341,7 @@ sp_before_angle = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_inside_angle = ignore # ignore/add/remove/force/not_defined
|
sp_inside_angle = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space inside '<>'.
|
# Add or remove space inside '<>'.
|
||||||
|
# if empty.
|
||||||
sp_inside_angle_empty = ignore # ignore/add/remove/force/not_defined
|
sp_inside_angle_empty = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between '>' and ':'.
|
# Add or remove space between '>' and ':'.
|
||||||
@ -429,6 +478,7 @@ sp_cpp_before_struct_binding = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_inside_square = ignore # ignore/add/remove/force/not_defined
|
sp_inside_square = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space inside '[]'.
|
# Add or remove space inside '[]'.
|
||||||
|
# if empty.
|
||||||
sp_inside_square_empty = ignore # ignore/add/remove/force/not_defined
|
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
|
# (OC) Add or remove space inside a non-empty Objective-C boxed array '@[' and
|
||||||
@ -443,15 +493,15 @@ sp_after_comma = ignore # ignore/add/remove/force/not_defined
|
|||||||
# Default: remove
|
# Default: remove
|
||||||
sp_before_comma = remove # ignore/add/remove/force/not_defined
|
sp_before_comma = remove # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# (C#) Add or remove space between ',' and ']' in multidimensional array type
|
# (C#, Vala) Add or remove space between ',' and ']' in multidimensional array type
|
||||||
# like 'int[,,]'.
|
# like 'int[,,]'.
|
||||||
sp_after_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
sp_after_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# (C#) Add or remove space between '[' and ',' in multidimensional array type
|
# (C#, Vala) Add or remove space between '[' and ',' in multidimensional array type
|
||||||
# like 'int[,,]'.
|
# like 'int[,,]'.
|
||||||
sp_before_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
sp_before_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# (C#) Add or remove space between ',' in multidimensional array type
|
# (C#, Vala) Add or remove space between ',' in multidimensional array type
|
||||||
# like 'int[,,]'.
|
# like 'int[,,]'.
|
||||||
sp_between_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
sp_between_mdatype_commas = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
@ -587,6 +637,7 @@ sp_inside_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_inside_braces = ignore # ignore/add/remove/force/not_defined
|
sp_inside_braces = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space inside '{}'.
|
# Add or remove space inside '{}'.
|
||||||
|
# if empty.
|
||||||
sp_inside_braces_empty = ignore # ignore/add/remove/force/not_defined
|
sp_inside_braces_empty = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space around trailing return operator '->'.
|
# Add or remove space around trailing return operator '->'.
|
||||||
@ -604,7 +655,7 @@ sp_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_func_proto_paren = ignore # ignore/add/remove/force/not_defined
|
sp_func_proto_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between function name and '()' on function declaration
|
# Add or remove space between function name and '()' on function declaration
|
||||||
# without parameters.
|
# if empty.
|
||||||
sp_func_proto_paren_empty = ignore # ignore/add/remove/force/not_defined
|
sp_func_proto_paren_empty = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between function name and '(' with a typedef specifier.
|
# Add or remove space between function name and '(' with a typedef specifier.
|
||||||
@ -614,7 +665,7 @@ sp_func_type_paren = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_func_def_paren = ignore # ignore/add/remove/force/not_defined
|
sp_func_def_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space between function name and '()' on function definition
|
# Add or remove space between function name and '()' on function definition
|
||||||
# without parameters.
|
# if empty.
|
||||||
sp_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined
|
sp_func_def_paren_empty = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space inside empty function '()'.
|
# Add or remove space inside empty function '()'.
|
||||||
@ -624,6 +675,16 @@ sp_inside_fparens = ignore # ignore/add/remove/force/not_defined
|
|||||||
# Add or remove space inside function '(' and ')'.
|
# Add or remove space inside function '(' and ')'.
|
||||||
sp_inside_fparen = ignore # ignore/add/remove/force/not_defined
|
sp_inside_fparen = ignore # 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
|
# Add or remove space inside the first parentheses in a function type, as in
|
||||||
# 'void (*x)(...)'.
|
# 'void (*x)(...)'.
|
||||||
sp_inside_tparen = ignore # ignore/add/remove/force/not_defined
|
sp_inside_tparen = ignore # ignore/add/remove/force/not_defined
|
||||||
@ -963,6 +1024,14 @@ 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'.
|
# 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
|
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'.
|
# 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
|
# 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
|
# (i.e. the comment is the first non-whitespace on the line), and which starts
|
||||||
@ -991,7 +1060,7 @@ sp_between_new_paren = ignore # ignore/add/remove/force/not_defined
|
|||||||
# Add or remove space between ')' and type in 'new(foo) BAR'.
|
# Add or remove space between ')' and type in 'new(foo) BAR'.
|
||||||
sp_after_newop_paren = ignore # ignore/add/remove/force/not_defined
|
sp_after_newop_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space inside parenthesis of the new operator
|
# Add or remove space inside parentheses of the new operator
|
||||||
# as in 'new(foo) BAR'.
|
# as in 'new(foo) BAR'.
|
||||||
sp_inside_newop_paren = ignore # ignore/add/remove/force/not_defined
|
sp_inside_newop_paren = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
@ -1008,7 +1077,7 @@ sp_inside_newop_paren_open = ignore # ignore/add/remove/force/not_defined
|
|||||||
sp_inside_newop_paren_close = ignore # ignore/add/remove/force/not_defined
|
sp_inside_newop_paren_close = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Add or remove space before a trailing comment.
|
# Add or remove space before a trailing comment.
|
||||||
sp_before_tr_cmt = remove # ignore/add/remove/force/not_defined
|
sp_before_tr_cmt = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Number of spaces before a trailing comment.
|
# Number of spaces before a trailing comment.
|
||||||
sp_num_before_tr_cmt = 0 # unsigned number
|
sp_num_before_tr_cmt = 0 # unsigned number
|
||||||
@ -1045,6 +1114,12 @@ sp_after_noexcept = ignore # ignore/add/remove/force/not_defined
|
|||||||
# Add or remove space after '_'.
|
# Add or remove space after '_'.
|
||||||
sp_vala_after_translation = ignore # ignore/add/remove/force/not_defined
|
sp_vala_after_translation = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space before a bit colon ':'.
|
||||||
|
sp_before_bit_colon = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove space after a bit colon ':'.
|
||||||
|
sp_after_bit_colon = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# If true, a <TAB> is inserted after #define.
|
# If true, a <TAB> is inserted after #define.
|
||||||
force_tab_after_define = false # true/false
|
force_tab_after_define = false # true/false
|
||||||
|
|
||||||
@ -1096,7 +1171,7 @@ indent_with_tabs = 1 # unsigned number
|
|||||||
indent_cmt_with_tabs = false # true/false
|
indent_cmt_with_tabs = false # true/false
|
||||||
|
|
||||||
# Whether to indent strings broken by '\' so that they line up.
|
# Whether to indent strings broken by '\' so that they line up.
|
||||||
indent_align_string = true # true/false
|
indent_align_string = false # true/false
|
||||||
|
|
||||||
# The number of spaces to indent multi-line XML strings.
|
# The number of spaces to indent multi-line XML strings.
|
||||||
# Requires indent_align_string=true.
|
# Requires indent_align_string=true.
|
||||||
@ -1533,7 +1608,7 @@ indent_using_block = true # true/false
|
|||||||
# How to indent the continuation of ternary operator.
|
# How to indent the continuation of ternary operator.
|
||||||
#
|
#
|
||||||
# 0: Off (default)
|
# 0: Off (default)
|
||||||
# 1: When the `if_false` is a continuation, indent it under `if_false`
|
# 1: When the `if_false` is a continuation, indent it under the `if_true` branch
|
||||||
# 2: When the `:` is a continuation, indent it under `?`
|
# 2: When the `:` is a continuation, indent it under `?`
|
||||||
indent_ternary_operator = 0 # unsigned number
|
indent_ternary_operator = 0 # unsigned number
|
||||||
|
|
||||||
@ -1561,10 +1636,15 @@ donot_indent_func_def_close_paren = false # true/false
|
|||||||
# Newline adding and removing options
|
# Newline adding and removing options
|
||||||
#
|
#
|
||||||
|
|
||||||
# Whether to collapse empty blocks between '{' and '}'.
|
# Whether to collapse empty blocks between '{' and '}' except for functions.
|
||||||
# If true, overrides nl_inside_empty_func
|
# Use nl_collapse_empty_body_functions to specify how empty function braces
|
||||||
|
# should be formatted.
|
||||||
nl_collapse_empty_body = false # true/false
|
nl_collapse_empty_body = false # 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 };'.
|
# Don't split one-line braced assignments, as in 'foo_t f = { 1, 2 };'.
|
||||||
nl_assign_leave_one_liners = false # true/false
|
nl_assign_leave_one_liners = false # true/false
|
||||||
|
|
||||||
@ -2017,6 +2097,12 @@ nl_template_end = false # true/false
|
|||||||
# See nl_oc_msg_leave_one_liner.
|
# See nl_oc_msg_leave_one_liner.
|
||||||
nl_oc_msg_args = false # true/false
|
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 '{'.
|
# Add or remove newline between function signature and '{'.
|
||||||
nl_fdef_brace = ignore # ignore/add/remove/force/not_defined
|
nl_fdef_brace = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
@ -2030,6 +2116,9 @@ nl_cpp_ldef_brace = ignore # ignore/add/remove/force/not_defined
|
|||||||
# Add or remove newline between 'return' and the return expression.
|
# Add or remove newline between 'return' and the return expression.
|
||||||
nl_return_expr = ignore # ignore/add/remove/force/not_defined
|
nl_return_expr = ignore # 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.
|
# Whether to add a newline after semicolons, except in 'for' statements.
|
||||||
nl_after_semicolon = false # true/false
|
nl_after_semicolon = false # true/false
|
||||||
|
|
||||||
@ -2223,7 +2312,7 @@ nl_max_blank_in_func = 0 # unsigned number
|
|||||||
# The number of newlines inside an empty function body.
|
# The number of newlines inside an empty function body.
|
||||||
# This option overrides eat_blanks_after_open_brace and
|
# This option overrides eat_blanks_after_open_brace and
|
||||||
# eat_blanks_before_close_brace, but is ignored when
|
# eat_blanks_before_close_brace, but is ignored when
|
||||||
# nl_collapse_empty_body=true
|
# nl_collapse_empty_body_functions=true
|
||||||
nl_inside_empty_func = 0 # unsigned number
|
nl_inside_empty_func = 0 # unsigned number
|
||||||
|
|
||||||
# The number of newlines before a function prototype.
|
# The number of newlines before a function prototype.
|
||||||
@ -2261,8 +2350,21 @@ nl_after_func_class_proto_group = 0 # unsigned number
|
|||||||
nl_class_leave_one_liner_groups = false # true/false
|
nl_class_leave_one_liner_groups = false # true/false
|
||||||
|
|
||||||
# The number of newlines after '}' of a multi-line function body.
|
# The number of newlines after '}' of a multi-line function body.
|
||||||
|
#
|
||||||
|
# Overrides nl_min_after_func_body and nl_max_after_func_body.
|
||||||
nl_after_func_body = 0 # unsigned number
|
nl_after_func_body = 0 # unsigned number
|
||||||
|
|
||||||
|
# The minimum number of newlines after '}' of a multi-line function body.
|
||||||
|
#
|
||||||
|
# Only works when nl_after_func_body is 0.
|
||||||
|
nl_min_after_func_body = 0 # unsigned number
|
||||||
|
|
||||||
|
# The maximum number of newlines after '}' of a multi-line function body.
|
||||||
|
#
|
||||||
|
# Only works when nl_after_func_body is 0.
|
||||||
|
# Takes precedence over nl_min_after_func_body.
|
||||||
|
nl_max_after_func_body = 0 # unsigned number
|
||||||
|
|
||||||
# The number of newlines after '}' of a multi-line function body in a class
|
# The number of newlines after '}' of a multi-line function body in a class
|
||||||
# declaration. Also affects class constructors/destructors.
|
# declaration. Also affects class constructors/destructors.
|
||||||
#
|
#
|
||||||
@ -2275,12 +2377,6 @@ nl_after_func_body_class = 0 # unsigned number
|
|||||||
# Overrides nl_after_func_body and nl_after_func_body_class.
|
# Overrides nl_after_func_body and nl_after_func_body_class.
|
||||||
nl_after_func_body_one_liner = 0 # unsigned number
|
nl_after_func_body_one_liner = 0 # unsigned number
|
||||||
|
|
||||||
# The number of blank lines after a block of variable definitions at the top
|
|
||||||
# of a function body.
|
|
||||||
#
|
|
||||||
# 0: No change (default).
|
|
||||||
nl_func_var_def_blk = 0 # unsigned number
|
|
||||||
|
|
||||||
# The number of newlines before a block of typedefs. If nl_after_access_spec
|
# The number of newlines before a block of typedefs. If nl_after_access_spec
|
||||||
# is non-zero, that option takes precedence.
|
# is non-zero, that option takes precedence.
|
||||||
#
|
#
|
||||||
@ -2297,15 +2393,27 @@ nl_typedef_blk_end = 0 # unsigned number
|
|||||||
# 0: No change (default).
|
# 0: No change (default).
|
||||||
nl_typedef_blk_in = 0 # unsigned number
|
nl_typedef_blk_in = 0 # unsigned number
|
||||||
|
|
||||||
# The number of empty newlines before a block of variable definitions
|
# 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,
|
# not at the top of a function body. If nl_after_access_spec is non-zero,
|
||||||
# that option takes precedence.
|
# 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).
|
# 0: No change (default).
|
||||||
nl_var_def_blk_start = 0 # unsigned number
|
nl_var_def_blk_start = 0 # unsigned number
|
||||||
|
|
||||||
# The number of empty newlines after a block of variable definitions
|
# The minimum number of empty newlines after a block of variable definitions
|
||||||
# not at the top of a function body.
|
# 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).
|
# 0: No change (default).
|
||||||
nl_var_def_blk_end = 0 # unsigned number
|
nl_var_def_blk_end = 0 # unsigned number
|
||||||
@ -2621,11 +2729,6 @@ align_var_def_inline = false # true/false
|
|||||||
# 0: Don't align (default).
|
# 0: Don't align (default).
|
||||||
align_assign_span = 0 # unsigned number
|
align_assign_span = 0 # unsigned number
|
||||||
|
|
||||||
# The span for aligning on '{' in braced init list.
|
|
||||||
#
|
|
||||||
# 0: Don't align (default).
|
|
||||||
align_braced_init_list_span = 0 # unsigned number
|
|
||||||
|
|
||||||
# The span for aligning on '=' in function prototype modifier.
|
# The span for aligning on '=' in function prototype modifier.
|
||||||
#
|
#
|
||||||
# 0: Don't align (default).
|
# 0: Don't align (default).
|
||||||
@ -2642,6 +2745,11 @@ align_assign_thresh = 0 # number
|
|||||||
# Depends on 'align_assign_span' and 'align_assign_thresh' settings.
|
# Depends on 'align_assign_span' and 'align_assign_thresh' settings.
|
||||||
align_assign_on_multi_var_defs = false # true/false
|
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.
|
# The threshold for aligning on '{' in braced init list.
|
||||||
# Use a negative number for absolute thresholds.
|
# Use a negative number for absolute thresholds.
|
||||||
#
|
#
|
||||||
@ -2760,6 +2868,13 @@ align_right_cmt_at_col = 0 # unsigned number
|
|||||||
# 0: Don't align (default).
|
# 0: Don't align (default).
|
||||||
align_func_proto_span = 0 # unsigned number
|
align_func_proto_span = 0 # unsigned number
|
||||||
|
|
||||||
|
# Whether to ignore continuation lines when evaluating the number of
|
||||||
|
# new lines for the function prototype alignment's span.
|
||||||
|
#
|
||||||
|
# false: continuation lines are part of the newlines count
|
||||||
|
# true: continuation lines are not counted
|
||||||
|
align_func_proto_span_ignore_cont_lines = false # true/false
|
||||||
|
|
||||||
# How to consider (or treat) the '*' in the alignment of function prototypes.
|
# How to consider (or treat) the '*' in the alignment of function prototypes.
|
||||||
#
|
#
|
||||||
# 0: Part of the type 'void * foo();' (default)
|
# 0: Part of the type 'void * foo();' (default)
|
||||||
@ -2809,9 +2924,22 @@ align_single_line_brace_gap = 0 # unsigned number
|
|||||||
# 0: Don't align (default).
|
# 0: Don't align (default).
|
||||||
align_oc_msg_spec_span = 0 # unsigned number
|
align_oc_msg_spec_span = 0 # unsigned number
|
||||||
|
|
||||||
# Whether to align macros wrapped with a backslash and a newline. This will
|
# Whether and how to align backslashes that split a macro onto multiple lines.
|
||||||
# not work right if the macro contains a multi-line comment.
|
# This will not work right if the macro contains a multi-line comment.
|
||||||
align_nl_cont = false # true/false
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# The minimum number of spaces between the end of a line and its continuation
|
||||||
|
# backslash. Requires align_nl_cont.
|
||||||
|
#
|
||||||
|
# Default: 1
|
||||||
|
align_nl_cont_spaces = 1 # unsigned number
|
||||||
|
|
||||||
# Whether to align macro functions and variables together.
|
# Whether to align macro functions and variables together.
|
||||||
align_pp_define_together = false # true/false
|
align_pp_define_together = false # true/false
|
||||||
@ -2907,7 +3035,7 @@ cmt_reflow_indent_to_paragraph_start = false # true/false
|
|||||||
|
|
||||||
# Whether to convert all tabs to spaces in comments. If false, tabs in
|
# Whether to convert all tabs to spaces in comments. If false, tabs in
|
||||||
# comments are left alone, unless used for indenting.
|
# comments are left alone, unless used for indenting.
|
||||||
cmt_convert_tab_to_spaces = true # true/false
|
cmt_convert_tab_to_spaces = false # true/false
|
||||||
|
|
||||||
# Whether to apply changes to multi-line comments, including cmt_width,
|
# Whether to apply changes to multi-line comments, including cmt_width,
|
||||||
# keyword substitution and leading chars.
|
# keyword substitution and leading chars.
|
||||||
@ -3095,9 +3223,12 @@ mod_full_brace_nl = 0 # unsigned number
|
|||||||
# mod_full_brace_function
|
# mod_full_brace_function
|
||||||
mod_full_brace_nl_block_rem_mlcond = false # true/false
|
mod_full_brace_nl_block_rem_mlcond = false # true/false
|
||||||
|
|
||||||
# Add or remove unnecessary parenthesis on 'return' statement.
|
# Add or remove unnecessary parentheses on 'return' statement.
|
||||||
mod_paren_on_return = ignore # ignore/add/remove/force/not_defined
|
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.
|
# (Pawn) Whether to change optional semicolons to real semicolons.
|
||||||
mod_pawn_semicolon = false # true/false
|
mod_pawn_semicolon = false # true/false
|
||||||
|
|
||||||
@ -3119,6 +3250,12 @@ mod_remove_extra_semicolon = false # true/false
|
|||||||
# Whether to remove duplicate include.
|
# Whether to remove duplicate include.
|
||||||
mod_remove_duplicate_include = false # true/false
|
mod_remove_duplicate_include = false # 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
|
# 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.
|
# a comment after the close brace, a comment will be added.
|
||||||
mod_add_long_function_closebrace_comment = 0 # unsigned number
|
mod_add_long_function_closebrace_comment = 0 # unsigned number
|
||||||
@ -3195,6 +3332,49 @@ mod_remove_empty_return = false # true/false
|
|||||||
# Add or remove the comma after the last value of an enumeration.
|
# Add or remove the comma after the last value of an enumeration.
|
||||||
mod_enum_last_comma = ignore # ignore/add/remove/force/not_defined
|
mod_enum_last_comma = ignore # 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 = 0 # unsigned number
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'int short'.
|
||||||
|
mod_int_short = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'short int'.
|
||||||
|
mod_short_int = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'int long'.
|
||||||
|
mod_int_long = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'long int'.
|
||||||
|
mod_long_int = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'int signed'.
|
||||||
|
mod_int_signed = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'signed int'.
|
||||||
|
mod_signed_int = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'int unsigned'.
|
||||||
|
mod_int_unsigned = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
|
# Add or remove the 'int' keyword in 'unsigned int'.
|
||||||
|
mod_unsigned_int = ignore # 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
|
# (OC) Whether to organize the properties. If true, properties will be
|
||||||
# rearranged according to the mod_sort_oc_property_*_weight factors.
|
# rearranged according to the mod_sort_oc_property_*_weight factors.
|
||||||
mod_sort_oc_properties = false # true/false
|
mod_sort_oc_properties = false # true/false
|
||||||
@ -3226,6 +3406,16 @@ mod_sort_oc_property_nullability_weight = 0 # number
|
|||||||
# Preprocessor options
|
# 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
|
# Add or remove indentation of preprocessor directives inside #if blocks
|
||||||
# at brace level 0 (file-level).
|
# at brace level 0 (file-level).
|
||||||
pp_indent = ignore # ignore/add/remove/force/not_defined
|
pp_indent = ignore # ignore/add/remove/force/not_defined
|
||||||
@ -3246,10 +3436,10 @@ pp_indent_at_level0 = false # true/false
|
|||||||
# Default: 1
|
# Default: 1
|
||||||
pp_indent_count = 1 # unsigned number
|
pp_indent_count = 1 # unsigned number
|
||||||
|
|
||||||
# Add or remove space after # based on pp_level of #if blocks.
|
# Add or remove space after # based on pp level of #if blocks.
|
||||||
pp_space = ignore # ignore/add/remove/force/not_defined
|
pp_space_after = ignore # ignore/add/remove/force/not_defined
|
||||||
|
|
||||||
# Sets the number of spaces per level added with pp_space.
|
# Sets the number of spaces per level added with pp_space_after.
|
||||||
pp_space_count = 0 # unsigned number
|
pp_space_count = 0 # unsigned number
|
||||||
|
|
||||||
# The indent for '#region' and '#endregion' in C# and '#pragma region' in
|
# The indent for '#region' and '#endregion' in C# and '#pragma region' in
|
||||||
@ -3282,22 +3472,34 @@ pp_include_at_level = false # true/false
|
|||||||
# Whether to ignore the '#define' body while formatting.
|
# Whether to ignore the '#define' body while formatting.
|
||||||
pp_ignore_define_body = false # true/false
|
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 = 8 # number
|
||||||
|
|
||||||
# Whether to indent case statements between #if, #else, and #endif.
|
# Whether to indent case statements between #if, #else, and #endif.
|
||||||
# Only applies to the indent of the preprocesser that the case statements
|
# Only applies to the indent of the preprocessor that the case statements
|
||||||
# directly inside of.
|
# directly inside of.
|
||||||
#
|
#
|
||||||
# Default: true
|
# Default: true
|
||||||
pp_indent_case = true # true/false
|
pp_indent_case = true # true/false
|
||||||
|
|
||||||
# Whether to indent whole function definitions between #if, #else, and #endif.
|
# Whether to indent whole function definitions between #if, #else, and #endif.
|
||||||
# Only applies to the indent of the preprocesser that the function definition
|
# Only applies to the indent of the preprocessor that the function definition
|
||||||
# is directly inside of.
|
# is directly inside of.
|
||||||
#
|
#
|
||||||
# Default: true
|
# Default: true
|
||||||
pp_indent_func_def = true # true/false
|
pp_indent_func_def = true # true/false
|
||||||
|
|
||||||
# Whether to indent extern C blocks between #if, #else, and #endif.
|
# Whether to indent extern C blocks between #if, #else, and #endif.
|
||||||
# Only applies to the indent of the preprocesser that the extern block is
|
# Only applies to the indent of the preprocessor that the extern block is
|
||||||
# directly inside of.
|
# directly inside of.
|
||||||
#
|
#
|
||||||
# Default: true
|
# Default: true
|
||||||
@ -3305,7 +3507,7 @@ pp_indent_extern = true # true/false
|
|||||||
|
|
||||||
# How to indent braces directly inside #if, #else, and #endif.
|
# How to indent braces directly inside #if, #else, and #endif.
|
||||||
# Requires pp_if_indent_code=true and only applies to the indent of the
|
# Requires pp_if_indent_code=true and only applies to the indent of the
|
||||||
# preprocesser that the braces are directly inside of.
|
# preprocessor that the braces are directly inside of.
|
||||||
# 0: No extra indent
|
# 0: No extra indent
|
||||||
# 1: Indent by one level
|
# 1: Indent by one level
|
||||||
# -1: Preserve original indentation
|
# -1: Preserve original indentation
|
||||||
@ -3378,10 +3580,10 @@ use_indent_continue_only_once = false # true/false
|
|||||||
|
|
||||||
# The indentation can be:
|
# The indentation can be:
|
||||||
# - after the assignment, at the '[' character
|
# - after the assignment, at the '[' character
|
||||||
# - at the begin of the lambda body
|
# - at the beginning of the lambda body
|
||||||
#
|
#
|
||||||
# true: indentation will be after the assignment
|
# true: indentation will be at the beginning of the lambda body
|
||||||
# false: indentation will be at the begin of the lambda body (default)
|
# false: indentation will be after the assignment (default)
|
||||||
indent_cpp_lambda_only_once = false # true/false
|
indent_cpp_lambda_only_once = false # true/false
|
||||||
|
|
||||||
# Whether sp_after_angle takes precedence over sp_inside_fparen. This was the
|
# Whether sp_after_angle takes precedence over sp_inside_fparen. This was the
|
||||||
@ -3433,6 +3635,23 @@ debug_timeout = 0 # number
|
|||||||
# 0: do not truncate.
|
# 0: do not truncate.
|
||||||
debug_truncate = 0 # unsigned number
|
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
|
||||||
|
|
||||||
|
# use (or not) the exit(EX_SOFTWARE) function.
|
||||||
|
#
|
||||||
|
# Default: true
|
||||||
|
debug_use_the_exit_function_pop = true # 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:
|
# Meaning of the settings:
|
||||||
# Ignore - do not do any changes
|
# Ignore - do not do any changes
|
||||||
# Add - makes sure there is 1 or more space/brace/newline/etc
|
# Add - makes sure there is 1 or more space/brace/newline/etc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user