mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-19 21:23:36 +08:00
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
|