mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-20 21:09:52 +00:00
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
9 lines
84 B
Bash
9 lines
84 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy app
|
|
ruff check app
|
|
ruff format app --check
|