.clang-format (737B)
1 BasedOnStyle: Webkit 2 IndentWidth: 8 3 ContinuationIndentWidth: 8 4 UseTab: AlignWithSpaces 5 6 # PointerAlignment: Right 7 8 AlignTrailingComments: true 9 SpacesBeforeTrailingComments: 1 10 KeepEmptyLinesAtTheStartOfBlocks: false 11 AllowShortBlocksOnASingleLine: true 12 AllowShortIfStatementsOnASingleLine: true 13 AllowShortCaseLabelsOnASingleLine: false 14 AllowShortEnumsOnASingleLine: true 15 AllowShortFunctionsOnASingleLine: false 16 AlignConsecutiveDeclarations: false 17 AlignConsecutiveAssignments: false 18 AlignConsecutiveMacros: false 19 SortIncludes: false 20 21 IndentCaseLabels: false 22 ColumnLimit: 135 23 PenaltyBreakBeforeFirstCallParameter: 1 24 AlignAfterOpenBracket: DontAlign 25 BinPackArguments: false 26 BinPackParameters: false 27 28 BreakAfterReturnType: TopLevelDefinitions