lint: linter for package docstrings (#59)

Fixes #38
This commit is contained in:
Michael McLoughlin
2019-01-22 21:14:59 -08:00
committed by GitHub
parent f1e854a1c0
commit 9c913ee847
4 changed files with 23 additions and 0 deletions

6
script/lib.sh Normal file
View File

@@ -0,0 +1,6 @@
# Print an error message to the terminal.
print_error() {
local red='\033[0;31m'
local nocolor='\033[0m'
printf "${red}error${nocolor}\t$1\n"
}