blob: d879b0eca1648c7d354fc2642ecdea9694643fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
BasedOnStyle: LLVM
UseTab: ForIndentation
TabWidth: 4
IndentWidth: 4
BreakBeforeBraces: Custom
BraceWrapping:
AfterFunction: true
AfterControlStatement: false
AfterEnum: false
AfterStruct: false
AfterUnion: false
BeforeElse: true
IndentBraces: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
ColumnLimit: 100
SortIncludes: false
SpaceBeforeParens: ControlStatements
IndentCaseLabels: true
|