Обновление

This commit is contained in:
Andrei Astafev 2020-02-12 12:41:52 +03:00
parent 2c51ecc3dc
commit 47ea773826

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 ':'.
@ -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.