uncrustify: force a single EOF newline

The CI compliance check scripts check for newlines in patch submissions.

Signed-off-by: Jake Swensen <jake@swensen.io>
This commit is contained in:
Jake Swensen 2021-08-20 18:00:52 -05:00 committed by Christopher Friedt
parent f7870ff61b
commit 4a4a03d476

View file

@ -24,6 +24,13 @@ nl_func_var_def_blk = 1
nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{"
nl_fdef_brace = add # "int foo() {" vs "int foo()\n{"
#
# End of file behavior
#
nl_end_of_file = force # string (add/force/ignore/remove)
nl_end_of_file_min = 1 # The min number of newlines at end of file
#
# Source code modifications
#