tools/codeformat.py: Use -q option on uncrustify to make output quiet.
This suppresses the Parsing: <file> as language C lines. This makes parsing run a bit faster and on CI it makes for less scrolling through logs (and black already uses the -q option).
This commit is contained in:
parent
093fd80760
commit
2d1fef7096
|
@ -168,7 +168,7 @@ def main():
|
|||
|
||||
# Format C files with uncrustify.
|
||||
if format_c:
|
||||
batch(["uncrustify", "-c", UNCRUSTIFY_CFG, "-lC", "--no-backup"], lang_files(C_EXTS))
|
||||
batch(["uncrustify", "-q", "-c", UNCRUSTIFY_CFG, "-lC", "--no-backup"], lang_files(C_EXTS))
|
||||
for file in lang_files(C_EXTS):
|
||||
fixup_c(file)
|
||||
|
||||
|
|
Loading…
Reference in New Issue