-
-
Save Chocobo1/539cee860d1eef0acfa6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# run 2 times, because one formatter output should be checked again by another formatter | |
for _ in 1 2; do | |
astyle --verbose --formatted --preserve-date --suffix=none --style=kr --max-instatement-indent=120 --indent=spaces=4 --indent-namespaces --pad-oper --pad-header --unpad-paren --break-closing-brackets --remove-brackets --keep-one-line-blocks --keep-one-line-statements "$1" | |
echo | |
uncrustify -c uncrustify.cfg --no-backup "$1" | |
echo | |
echo | |
done | |
# note: check `enum {}` blocks after applying astyle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment