mirror of
https://github.com/etesync/server
synced 2024-11-24 09:48:09 +00:00
9 lines
97 B
Bash
9 lines
97 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
mypy .
|
||
|
npx -q pyright@1.1.172 .
|
||
|
ruff check .
|
||
|
ruff format --check .
|