|
Is your feature request related to a problem? Please describe. Also, there will eventually be around 14 projects in the repo so the table is just going to get wider and harder to read. Describe the solution you'd like Describe alternatives you've considered Or add an arg to the I see that the polylith plugin uses rich console. (Nice!) I sifted through the source for that to see if there's a way to set an environment variable or provide a config file to set the max width on it. I didn't find anything but maybe I missed it. Additional context |
Replies: 6 comments
|
I tried dumping the output to a text file in the hopes that the width would be unconstrained. No luck. Still constrained to 80 chars. I'm guessing the rich console falls back to 80 when it can't detect the width of the console. |
|
Good ideas! My initial guess about the commands was that I'll think about this, maybe it would be useful for something like |
|
Huge thanks for the sponsoring @hstravis ! 🙏 🤩 |
Thanks for the hard work! The polylith plugin is excellent. Wish I could do more. WARNING: Soapbox |
Setting the For others, add something like this to your GitHub workflow YAML: env:
COLUMNS: 160 |
|
(moving this one to the Discussions section) |
Setting the
COLUMNSenvironment variable in GitHub CI/CD jobs works! It changes the max width of tables so they are easier to read. Thanks!For others, add something like this to …