#! /bin/sh -e

BIN="venv/bin/"
FILES="mkdocs_click tests"

set -x

${BIN}black --check --diff $FILES
${BIN}flake8 $FILES
${BIN}mypy $FILES
