mirror of
https://github.com/SuperBFG7/ympd
synced 2024-12-29 12:20:26 +00:00
883ea7ca06
Ran prettier on .clang-format
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
|
|
repo="$(git rev-parse --show-toplevel)"
|
|
|
|
pushd "$repo"
|
|
prettier --write .
|
|
for i in http_server.c http_server.h json_encode.h mpd_client.c mpd_client.h ympd.c; do
|
|
clang-format -i -style=file "src/$i"
|
|
done
|
|
popd
|