Files
yoga/format.sh

13 lines
254 B
Bash
Raw Normal View History

#!/usr/bin/env bash
clang-format \
-style="{ \
BasedOnStyle: WebKit, \
IndentWidth: 2, \
ColumnLimit: 100, \
BreakBeforeBraces: Attach, \
BinPackParameters: false, \
PointerAlignment: Right, \
}" "$@" \
-i ./**/*.{h,c,cpp}