#!/usr/bin/env bash clang-format \ -style="{ \ AlignAfterOpenBracket: Align, \ AlignEscapedNewlinesLeft: true, \ AlignOperands: true, \ AllowAllParametersOfDeclarationOnNextLine: false, \ AllowShortBlocksOnASingleLine: false, \ AllowShortCaseLabelsOnASingleLine: false, \ 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: 1000, \ PenaltyExcessCharacter: 100, \ PenaltyReturnTypeOnItsOwnLine: 100, \ PointerAlignment: Right, \ SortIncludes: true, \ SpaceAfterCStyleCast: true, \ UseTab: Never, \ }" "$@" \ -i $(dirname $0)/CSSLayout/*.{h,c,cpp} \ $(dirname $0)/tests/CSSLayoutTestUtils/*.{h,c,cpp} \ $(dirname $0)/benchmarks/*.{h,c,cpp} \ $(dirname $0)/java/jni/*.{h,c,cpp}