1
0
Fork 0
mirror of synced 2024-05-17 19:02:33 +12:00
ArchiveBox/bin/lint.sh

25 lines
580 B
Bash
Raw Normal View History

2020-07-22 17:30:58 +12: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-28 15:34:30 +12:00
echo "[*] Running flake8..."
2024-04-26 16:36:11 +12:00
cd "$DIR/archivebox"
2021-04-24 14:58:44 +12:00
flake8 . && echo "√ No errors found."
2020-07-28 15:59:10 +12:00
2020-07-28 15:34:30 +12:00
echo
2020-07-28 15:59:10 +12:00
2020-07-28 15:34:30 +12:00
echo "[*] Running mypy..."
2020-07-28 15:59:10 +12:00
echo "(skipping for now, run 'mypy archivebox' to run it manually)"