1---
2Language:        Cpp
3# BasedOnStyle:  LLVM
4AccessModifierOffset: -2
5ConstructorInitializerIndentWidth: 2
6AlignEscapedNewlinesLeft: false
7AlignTrailingComments: true
8AllowAllParametersOfDeclarationOnNextLine: false
9AllowShortBlocksOnASingleLine: false
10AllowShortIfStatementsOnASingleLine: false
11AllowShortLoopsOnASingleLine: false
12AllowShortFunctionsOnASingleLine: Inline
13AlwaysBreakTemplateDeclarations: true
14AlwaysBreakBeforeMultilineStrings: true
15BreakBeforeBinaryOperators: true
16BreakBeforeTernaryOperators: true
17BreakConstructorInitializersBeforeComma: false
18BinPackParameters: false
19ColumnLimit:     100
20ConstructorInitializerAllOnOneLineOrOnePerLine: true
21DerivePointerAlignment: false
22IndentCaseLabels: false
23IndentWrappedFunctionNames: false
24IndentFunctionDeclarationAfterType: false
25MaxEmptyLinesToKeep: 1
26KeepEmptyLinesAtTheStartOfBlocks: true
27NamespaceIndentation: None
28ObjCSpaceAfterProperty: false
29ObjCSpaceBeforeProtocolList: true
30PenaltyBreakBeforeFirstCallParameter: 190
31PenaltyBreakComment: 300
32PenaltyBreakString: 10000
33PenaltyBreakFirstLessLess: 120
34PenaltyExcessCharacter: 1000000
35PenaltyReturnTypeOnItsOwnLine: 1200
36PointerAlignment: Left
37SpacesBeforeTrailingComments: 1
38Cpp11BracedListStyle: true
39Standard:        Auto
40IndentWidth:     2
41TabWidth:        4
42UseTab:          Never
43BreakBeforeBraces: Attach
44SpacesInParentheses: false
45SpacesInAngles:  false
46SpaceInEmptyParentheses: false
47SpacesInCStyleCastParentheses: false
48SpacesInContainerLiterals: true
49SpaceBeforeAssignmentOperators: true
50ContinuationIndentWidth: 4
51CommentPragmas:  '^ IWYU pragma:'
52ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
53SpaceBeforeParens: ControlStatements
54DisableFormat:   false
55...
56
57