25 lines
665 B
YAML
25 lines
665 B
YAML
---
|
|
BasedOnStyle: LLVM
|
|
Language: Cpp
|
|
Standard: Cpp11
|
|
ColumnLimit: 160
|
|
IndentWidth: 4
|
|
|
|
AlignEscapedNewlines: DontAlign
|
|
AllowAllConstructorInitializersOnNextLine: false
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeBraces: Stroustrup
|
|
BreakConstructorInitializers: BeforeComma
|
|
BreakInheritanceList: BeforeComma
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
IndentPPDirectives: BeforeHash
|
|
NamespaceIndentation: Inner
|
|
PointerAlignment: Left
|
|
SpaceAfterTemplateKeyword: false
|
|
SpaceBeforeParens: Never
|
|
SpaceBeforeRangeBasedForLoopColon: false
|
|
SpacesInContainerLiterals: false
|
|
...
|