Summary: Previously format script had to be run from the root directory. With this change it can be run from anywhere Reviewed By: lucasr Differential Revision: D3715186 fbshipit-source-id: a46bc0b49aa32f0860bb3e3097ae7b08bdccbf2e
31 lines
949 B
Bash
Executable File
31 lines
949 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
clang-format \
|
|
-style="{ \
|
|
AlignEscapedNewlinesLeft: true, \
|
|
AlignOperands: true, \
|
|
AllowAllParametersOfDeclarationOnNextLine: false, \
|
|
AllowShortBlocksOnASingleLine: false, \
|
|
AllowShortCaseLabelsOnASingleLine: true, \
|
|
AllowShortFunctionsOnASingleLine: false, \
|
|
AllowShortIfStatementsOnASingleLine: false, \
|
|
AllowShortLoopsOnASingleLine: false, \
|
|
BinPackArguments: false, \
|
|
BinPackParameters: false, \
|
|
BreakBeforeBraces: Attach, \
|
|
ColumnLimit: 100, \
|
|
ContinuationIndentWidth: 4, \
|
|
IndentCaseLabels: true, \
|
|
IndentWidth: 2, \
|
|
KeepEmptyLinesAtTheStartOfBlocks: false, \
|
|
Language: Cpp, \
|
|
PenaltyBreakBeforeFirstCallParameter: 100, \
|
|
PenaltyBreakString: 100, \
|
|
PenaltyExcessCharacter: 100, \
|
|
PointerAlignment: Right, \
|
|
SortIncludes: true, \
|
|
SpaceAfterCStyleCast: true, \
|
|
UseTab: Never, \
|
|
}" "$@" \
|
|
-i $(dirname $0)/**/*.{h,c,cpp}
|