#!/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