uncrustify: add space before name of typedef

typedef enum {
         vvv
    }name;

becomes

    typedef enum {
         vvv
    } name;

Signed-off-by: Patrick Boettcher <patrick.boettcher@posteo.de>
This commit is contained in:
Patrick Boettcher 2018-03-16 13:41:38 +01:00 committed by Anas Nashif
commit d485d6c526

View file

@ -60,8 +60,9 @@ sp_inside_sparen = remove # remove spaces inside parens for if, while and
sp_brace_else = add # ignore/add/remove/force sp_brace_else = add # ignore/add/remove/force
sp_before_nl_cont = ignore sp_before_nl_cont = ignore
sp_cmt_cpp_start = add sp_cmt_cpp_start = add
cmt_sp_after_star_cont = 1 sp_brace_typedef = add # }typedefd_name -> } typedefd_name
cmt_sp_after_star_cont = 1
# #
# Aligning stuff # Aligning stuff
# #