https://github.com/ofkm/tally
Rust Based Source Code Analyzer inspired by cloc
https://github.com/ofkm/tally
Last synced: about 1 month ago
JSON representation
Rust Based Source Code Analyzer inspired by cloc
- Host: GitHub
- URL: https://github.com/ofkm/tally
- Owner: ofkm
- Created: 2026-05-13T19:27:26.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-15T02:45:57.000Z (about 2 months ago)
- Last Synced: 2026-05-15T04:34:22.753Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tally
Source Code Line Analyzer inspired cloc.
Run it with no arguments to count the current directory:
```sh
tally
```
Pass one or more files or directories to count those instead:
```sh
tally src tests Cargo.toml
```
Use `--tree` to include directory totals under each language:
```sh
tally --tree
```
The binary prints totals by language: files, blank lines, comment lines, and code lines. It skips common heavy directories like `.git`, `node_modules`, `target`, and `dist`.