blob: 00d61ef2721cc77acb07b745da0e868823c115e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash -e
## tools/reformat
##
## Automatically reformats code in this project to match the project style.
cd "$(dirname "$0")/.."
npx prettier --write .
cargo +nightly fmt --all
|