blob: bd574358310c7d56b508169b9bf80a23f2efa8fe (
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 +nightly fmt --all --check
|