mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
9 lines
94 B
Bash
9 lines
94 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
|
||
|
mypy .
|
||
|
black . --check
|
||
|
isort --recursive --check-only .
|
||
|
flake8 .
|