1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-06-12 01:48:29 +00:00
nyaa/lint.sh
Kfir Hadas 024c90022a Nyaa development helper (tool) (#324)
Add new tool for developing (lint/autopep8/isort/test)

New tool uses flake8 and isort for lint checks.
Deprecate existing tool (still works)
Update readme
Update Travis config
2017-08-06 00:04:38 +03:00

41 lines
870 B
Bash
Executable file

#!/bin/bash
# Lint checker/fixer
# This script is deprecated, but still works.
function auto_fix() {
./dev.py fix && ./dev.py isort
}
function check_lint() {
./dev.py lint
}
# MAIN
action=auto_fix # default action
for arg in "$@"
do
case "$arg" in
"-h" | "--help")
echo "+ ========================= +"
echo "+ This script is deprecated +"
echo "+ Please use ./dev.py +"
echo "+ ========================= +"
echo ""
echo "Lint checker/fixer"
echo ""
echo "Usage: $0 [-c|--check] [-h|--help]"
echo " No arguments : Check and auto-fix some warnings/errors"
echo " -c | --check : only check lint (don't auto-fix)"
echo " -h | --help : show this help and exit"
exit 0;
;;
"-c" | "--check")
action=check_lint
;;
esac
done
${action} # run selected action
if [[ $? -ne 0 ]]; then exit 1; fi