#!/usr/bin/env bash set -e export PATH=env/bin:${PATH} echo "> Running formatter..." black website/ --check echo "> Running linter..." flake8 website/ echo "> Running isort..." isort -rc -c website/ echo "> Running type checker..." mypy website/