mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-20 21:09:52 +00:00
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
10 lines
97 B
Bash
10 lines
97 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy app
|
|
ty check app
|
|
ruff check app
|
|
ruff format app --check
|