aboutsummaryrefslogtreecommitdiffstats
path: root/.clang-format
blob: e338db1cb716ab4c71cddabd3e0f2e34582f0b29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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