ArchiveBox/bin/lint.sh

25 lines
580 B
Bash
Raw Permalink Normal View History

2020-07-22 01:30:58 -04:00
#!/usr/bin/env bash
### Bash Environment Setup
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
# set -o xtrace
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
IFS=$'\n'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
source "$DIR/.venv/bin/activate"
2020-07-27 23:34:30 -04:00
echo "[*] Running flake8..."
2024-04-26 00:36:11 -04:00
cd "$DIR/archivebox"
2021-04-23 22:58:44 -04:00
flake8 . && echo "√ No errors found."
2020-07-27 23:59:10 -04:00
2020-07-27 23:34:30 -04:00
echo
2020-07-27 23:59:10 -04:00
2020-07-27 23:34:30 -04:00
echo "[*] Running mypy..."
2020-07-27 23:59:10 -04:00
echo "(skipping for now, run 'mypy archivebox' to run it manually)"