8 lines
191 B
Bash
Executable file
8 lines
191 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Count the lines of code, excluding tests and examples
|
|
git ls-files -- \
|
|
':!:LICENSE.txt' \
|
|
':!:test/*' \
|
|
':!:resources/example-*.csv' \
|
|
| xargs cloc "$@"
|