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