diff options
| author | Damien George <damien@micropython.org> | 2022-05-05 13:26:34 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-05-05 13:30:40 +1000 |
| commit | aec8db3cd120e897e7937d21c724393205d572cf (patch) | |
| tree | 42f4fe5e439a7f839f83dac9f58b0ed7fe3f6fd5 | |
| parent | b0a1b60a9b425cdb24e36d71974e902338ffb059 (diff) | |
tools/uncrustify: Make sure a space exists after a comma.
This will add a space after a comma if it doesn't have one, but will allow
more than one space if the spaces are already there.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | tools/uncrustify.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/uncrustify.cfg b/tools/uncrustify.cfg index 88127112e..221fb458e 100644 --- a/tools/uncrustify.cfg +++ b/tools/uncrustify.cfg @@ -372,7 +372,7 @@ sp_inside_square = ignore # ignore/add/remove/force sp_inside_square_oc_array = ignore # ignore/add/remove/force # Add or remove space after ',', i.e. 'a,b' vs. 'a, b'. -sp_after_comma = ignore # ignore/add/remove/force +sp_after_comma = add # ignore/add/remove/force # Add or remove space before ','. # |
