Compare commits

...

2 Commits

Author SHA1 Message Date
878e1d8a27 Выравнивание битовых полей 2020-02-28 12:25:48 +03:00
47ea773826 Обновление 2020-02-12 12:41:52 +03:00

View File

@@ -139,7 +139,7 @@ sp_enum_before_assign = ignore # ignore/add/remove/force
sp_enum_after_assign = ignore # ignore/add/remove/force
# Add or remove space around assignment ':' in enum.
sp_enum_colon = ignore # ignore/add/remove/force
sp_enum_colon = force # ignore/add/remove/force
# Add or remove space around preprocessor '##' concatenation operator.
#
@@ -802,30 +802,30 @@ sp_after_oc_property = ignore # ignore/add/remove/force
sp_after_oc_synchronized = ignore # ignore/add/remove/force
# Add or remove space around the ':' in 'b ? t : f'.
sp_cond_colon = ignore # ignore/add/remove/force
sp_cond_colon = force # ignore/add/remove/force
# Add or remove space before the ':' in 'b ? t : f'.
#
# Overrides sp_cond_colon.
sp_cond_colon_before = ignore # ignore/add/remove/force
sp_cond_colon_before = force # ignore/add/remove/force
# Add or remove space after the ':' in 'b ? t : f'.
#
# Overrides sp_cond_colon.
sp_cond_colon_after = ignore # ignore/add/remove/force
sp_cond_colon_after = force # ignore/add/remove/force
# Add or remove space around the '?' in 'b ? t : f'.
sp_cond_question = ignore # ignore/add/remove/force
sp_cond_question = force # ignore/add/remove/force
# Add or remove space before the '?' in 'b ? t : f'.
#
# Overrides sp_cond_question.
sp_cond_question_before = ignore # ignore/add/remove/force
sp_cond_question_before = force # ignore/add/remove/force
# Add or remove space after the '?' in 'b ? t : f'.
#
# Overrides sp_cond_question.
sp_cond_question_after = ignore # ignore/add/remove/force
sp_cond_question_after = force # ignore/add/remove/force
# In the abbreviated ternary form '(a ?: b)', add or remove space between '?'
# and ':'.
@@ -2293,7 +2293,7 @@ align_var_def_thresh = 1 # number
align_var_def_gap = 0 # unsigned number
# Whether to align the colon in struct bit fields.
align_var_def_colon = false # true/false
align_var_def_colon = true # true/false
# The gap for aligning the colon in struct bit fields.
align_var_def_colon_gap = 0 # unsigned number
@@ -2331,7 +2331,7 @@ align_assign_decl_func = 2 # unsigned number
# The span for aligning on '=' in enums.
#
# 0: Don't align (default).
align_enum_equ_span = 0 # unsigned number
align_enum_equ_span = 1 # unsigned number
# The threshold for aligning on '=' in enums.
# Use a negative number for absolute thresholds.