renderer.text — Text renderer¶
At the end of compilation, display (in standard output) a tree to sum up the compilation: which files were successfully compiled, which were not…
Example¶
[renderer.text]
enable = true
color = true
display = errors_or_all
Options¶
The default value is given between parenthesis.
color(auto)If
True, use color to draw the tree. Ifauto, use color only if standard output is not piped or redirected.ascii(False)If
Truedraw tree structure using only ASCII characters. Otherwise, use a wider set of characters.reverse(False)If
True, draw tree in reverse order.display(all)Define which files should be displayed at the end of compilation.
allDisplay all files.
errorsOnly display files when their compilation failed.
errors_or_allIf some files did not compile successfully, only display those files. Otherwise, display all files.