Gengo
Installating the binary
cargo install gengo-bin
Usage
Overrides
Like linguist, you can override behavior using a .gitattributes file.
Basically, just replace linguist-FOO with gengo-FOO. Unlike linguist,
gengo-detectable will always make a file be included in statistics (linguist
will still exclude them if they're generated or vendored).
# .gitattributes
# boolean attributes:
# These can be *negated* by prefixing with `-` (`-gengo-documentation`).
# Mark a file as documentation
*.html# Mark a file as generated
my-built-files/*# Mark a file as vendored
deps/*
# string attributes:
# Override the detected language for a file
# Spaces must be replaced with hyphens. Case-insensitive.
templates/*.js
You will need to commit your .gitattributes file for it to take effect.