# House style for sl0pboy/gbos C: 4-space, attached braces, dense-but-readable. # Tuned to minimize churn against the existing hand-formatted code. BasedOnStyle: LLVM IndentWidth: 4 TabWidth: 4 UseTab: Never ColumnLimit: 100 PointerAlignment: Right BreakBeforeBraces: Attach AllowShortCaseLabelsOnASingleLine: true AllowShortFunctionsOnASingleLine: All AllowShortIfStatementsOnASingleLine: AllIfsAndElse AllowShortLoopsOnASingleLine: true AllowShortBlocksOnASingleLine: Always AlignTrailingComments: true SpacesBeforeTrailingComments: 2 AlignConsecutiveMacros: Consecutive SortIncludes: Never IndentCaseLabels: true MaxEmptyLinesToKeep: 2 KeepEmptyLinesAtTheStartOfBlocks: true AlignArrayOfStructures: None ReflowComments: false