mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
~/npm/node_modules/prettier/bin-prettier.js --write --prose-wrap=always $1
|
|
|
|
# Format everything:
|
|
# for x in `find book/src/ | grep '\.md'`; do ./format_md.sh $x; done; git checkout book/src/project/CHANGELOG.md
|