mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-06-05 21:04:49 +00:00
Fix uncrustify configuration
This changes required aligmnent of closing parenthesis of function call
if placed in new line.
Before:
int x = func(aaa, bbb, ccc,
);
After:
int x = func(aaa, bbb, ccc,
);
The syntax above is not really used, but it also affects macros so may
be useful in some cases.
This commit is contained in:
+1
-1
@@ -225,7 +225,7 @@ indent_paren_nl = false # false/true
|
||||
# 0: Indent to body level
|
||||
# 1: Align under the open paren
|
||||
# 2: Indent to the brace level
|
||||
indent_paren_close = 0 # number
|
||||
indent_paren_close = 2 # number
|
||||
|
||||
# Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren
|
||||
indent_comma_paren = false # false/true
|
||||
|
||||
Reference in New Issue
Block a user