lemmy/scripts/lint.sh
Felix Ableitner 51505b86db clippy
2023-12-01 11:24:31 +01:00

18 lines
359 B
Bash
Executable file

#!/usr/bin/env bash
set -e
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
cd $CWD/../
cargo clippy --workspace --fix --allow-staged --allow-dirty --tests --all-targets -- -D warnings
# Format rust files
cargo +nightly fmt
# Format toml files
taplo format
# Format sql files
find migrations -type f -name '*.sql' -exec pg_format -i {} +