#! /bin/bash -e
set -x

PROJECT="scrapyio tests examples"

flake8 scrapyio tests
black --check --diff $PROJECT
isort --check --diff $PROJECT
mypy scrapyio tests
