Files
full-stack-fastapi-template/{{cookiecutter.project_slug}}/backend/app/scripts/lint.sh
Sebastián Ramírez 41a2f15d8f 🎨 Format fixes (#159)
* 📝 Update release notes

* 🎨 Update format and structure
2020-04-20 19:27:45 +02:00

9 lines
98 B
Bash

#!/usr/bin/env bash
set -x
mypy app
black app --check
isort --recursive --check-only app
flake8