Files
esp-idf/tools/format.sh
T

15 lines
297 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-09-01 12:32:05 +08:00
# Runs astyle with the full set of formatting options
astyle \
--style=otbs \
2019-09-25 11:08:21 +08:00
--attach-namespaces \
--attach-classes \
2016-09-01 12:32:05 +08:00
--indent=spaces=4 \
--convert-tabs \
--align-pointer=name \
--align-reference=name \
--keep-one-line-statements \
--pad-header \
--pad-oper \
"$@"