I'm using clang-format (through VScode) and it's refactoring my array definition code this way
int my_array[] = { OPTION1, 2, OPTION2, 4, END}; while I would like the ending braces to go to the next line
int my_array[] = { OPTION1, 2, OPTION2, 4, END }; I can't seem to find the right setting. Any idea how could I get this?