Reads lines of code in a given directory, and outputs line count per file type in a table form.
clone https://github.com/mariodujic/Line-Counter
cd Line-Counter
cargo run <directory-path>
Directories and file types can be excluded from the table by editing root config.toml
file.
To exclude build
and idea
directory, and txt
file type, config.toml
should contain:
[excluded]
dir = ['build', '.idea']
ext = ['txt']