mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
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:
committed by
Damien George
parent
093fd80760
commit
2d1fef7096
@@ -168,7 +168,7 @@ def main():
|
|||||||
|
|
||||||
# Format C files with uncrustify.
|
# Format C files with uncrustify.
|
||||||
if format_c:
|
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):
|
for file in lang_files(C_EXTS):
|
||||||
fixup_c(file)
|
fixup_c(file)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user