Compare commits

..

No commits in common. "0293201df984d46e3cefb9bcb047e894890216b1" and "e5214f32b8f1701b88ba59af1d00b9185d98a1f9" have entirely different histories.

View File

@ -1974,7 +1974,7 @@ nl_property_brace = ignore # ignore/add/remove/force
# applicable, otherwise no change. # applicable, otherwise no change.
# #
# Overrides eat_blanks_after_open_brace and eat_blanks_before_close_brace. # Overrides eat_blanks_after_open_brace and eat_blanks_before_close_brace.
nl_inside_namespace = 2 # unsigned number nl_inside_namespace = 0 # unsigned number
# Whether to remove blank lines after '{'. # Whether to remove blank lines after '{'.
eat_blanks_after_open_brace = true # true/false eat_blanks_after_open_brace = true # true/false
@ -2560,27 +2560,27 @@ mod_remove_extra_semicolon = true # 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 = 20 # unsigned number mod_add_long_function_closebrace_comment = 0 # unsigned number
# If a namespace body exceeds the specified number of newlines and doesn't # 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. # have a comment after the close brace, a comment will be added.
mod_add_long_namespace_closebrace_comment = 5 # unsigned number mod_add_long_namespace_closebrace_comment = 0 # unsigned number
# If a class body exceeds the specified number of newlines and doesn't have a # 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. # comment after the close brace, a comment will be added.
mod_add_long_class_closebrace_comment = 20 # unsigned number mod_add_long_class_closebrace_comment = 0 # unsigned number
# If a switch body exceeds the specified number of newlines and doesn't have a # 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. # comment after the close brace, a comment will be added.
mod_add_long_switch_closebrace_comment = 20 # unsigned number mod_add_long_switch_closebrace_comment = 0 # unsigned number
# If an #ifdef body exceeds the specified number of newlines and doesn't have # If an #ifdef body exceeds the specified number of newlines and doesn't have
# a comment after the #endif, a comment will be added. # a comment after the #endif, a comment will be added.
mod_add_long_ifdef_endif_comment = 20 # unsigned number mod_add_long_ifdef_endif_comment = 0 # unsigned number
# If an #ifdef or #else body exceeds the specified number of newlines and # 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. # doesn't have a comment after the #else, a comment will be added.
mod_add_long_ifdef_else_comment = 20 # unsigned number mod_add_long_ifdef_else_comment = 0 # unsigned number
# Whether to take care of the case by the mod_sort_xx options. # Whether to take care of the case by the mod_sort_xx options.
mod_sort_case_sensitive = false # true/false mod_sort_case_sensitive = false # true/false