A vertical formatter for any programming language with braces and semicolons (e.g., c/c++/java/javascript/rust)
vertfmt is a command-line tool that formats code written in programming languages with braces and semicolons (e.g., c/c++/java/javascript/rust/...). It shifts all your semicolons and braces to the very end of the line away from sight. It is designed to be used in less serious codebases.
To install vertfmt, you need to have Python 3.8 or higher installed. You can then use pip to install the package:
pip install git+https://github.com/infibrocco/vertfmt.gitTo use vertfmt, simply run the following command:
python -m vertfmt [filepath]Replace [filepath] with the path to the file you want to format. The tool will attempt to format the file in place.
You can also specify the maximum line length using the -l or --line-len option. For example:
python -m vertfmt -l 80 [filepath]