* 1/3 Add .clang-format file and travis compilation check * 2/3 Run clang-format * 3/3 Fix compilation problems due to include reordering * 3bis/3 AfterControlStatement: false
25 lines
No EOL
570 B
YAML
25 lines
No EOL
570 B
YAML
IndentWidth: 4
|
|
AccessModifierOffset: -4
|
|
ColumnLimit: 120
|
|
---
|
|
Language: Cpp
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterClass: true
|
|
AfterControlStatement: false
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: true
|
|
SplitEmptyRecord: true
|
|
SplitEmptyNamespace: true
|
|
AllowShortFunctionsOnASingleLine: None
|
|
BinPackParameters: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
IndentCaseLabels: true
|
|
PointerAlignment: Right |