2023-06-08 15:38:26 -04:00
|
|
|
#!/usr/bin/env bash
|
2022-11-18 23:33:54 -05:00
|
|
|
set -e
|
|
|
|
|
2023-02-18 09:36:12 -05:00
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
|
2024-08-22 11:33:00 -04:00
|
|
|
cd "$CWD/../"
|
2023-02-18 09:36:12 -05:00
|
|
|
|
2023-08-02 12:44:51 -04:00
|
|
|
# Format rust files
|
2023-02-18 09:36:12 -05:00
|
|
|
cargo +nightly fmt
|
2023-08-02 12:44:51 -04:00
|
|
|
|
|
|
|
# Format toml files
|
2023-07-14 04:45:18 -04:00
|
|
|
taplo format
|
2023-08-02 12:44:51 -04:00
|
|
|
|
|
|
|
# Format sql files
|
2024-06-26 04:47:09 -04:00
|
|
|
find migrations crates/db_schema/replaceable_schema -type f -name '*.sql' -exec pg_format -i {} +
|
2024-01-29 09:22:53 -05:00
|
|
|
|
|
|
|
cargo clippy --workspace --fix --allow-staged --allow-dirty --tests --all-targets --all-features -- -D warnings
|