summaryrefslogtreecommitdiff
path: root/tools/check-format
blob: 3b685375ffe2bda7357e5b1ad1e3b18224f61cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash -e

## tools/check-format
##
## Verifies that the project's code conforms to the project's preferred style. Exits non-zero
## if there are style differences.

cd "$(dirname "$0")/.."

npx prettier --check .
cargo fmt --all --check