blob: 4dfe7c361ce842ca7b46a6447a85ac3df18c168d (
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 fmt --all
|