1---
2Language:        Cpp
3# BasedOnStyle:  LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
8AlignEscapedNewlinesLeft: false
9AlignOperands:   true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: All
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
17AlwaysBreakAfterDefinitionReturnType: None
18AlwaysBreakAfterReturnType: None
19AlwaysBreakBeforeMultilineStrings: false
20AlwaysBreakTemplateDeclarations: false
21BinPackArguments: true
22BinPackParameters: true
23BraceWrapping:
24  AfterClass:      true
25  AfterControlStatement: false
26  AfterEnum:       true
27  AfterFunction:   true
28  AfterNamespace:  false
29  AfterObjCDeclaration: false
30  AfterStruct:     true
31  AfterUnion:      true
32  BeforeCatch:     false
33  BeforeElse:      false
34  IndentBraces:    false
35BreakBeforeBinaryOperators: None
36BreakBeforeBraces: Custom
37BreakBeforeTernaryOperators: true
38BreakConstructorInitializersBeforeComma: false
39ColumnLimit:     120
40CommentPragmas:  '^ IWYU pragma:'
41ConstructorInitializerAllOnOneLineOrOnePerLine: false
42ConstructorInitializerIndentWidth: 8
43ContinuationIndentWidth: 8
44Cpp11BracedListStyle: true
45DerivePointerAlignment: false
46DisableFormat:   false
47ExperimentalAutoDetectBinPacking: false
48ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
49IncludeCategories:
50  - Regex:           '<.*>'
51    Priority:        1
52  - Regex:           '.*'
53    Priority:        2
54IndentCaseLabels: false
55IndentWidth:     4
56IndentWrappedFunctionNames: false
57KeepEmptyLinesAtTheStartOfBlocks: true
58MacroBlockBegin: ''
59MacroBlockEnd:   ''
60MaxEmptyLinesToKeep: 1
61NamespaceIndentation: None
62ObjCBlockIndentWidth: 4
63ObjCSpaceAfterProperty: false
64ObjCSpaceBeforeProtocolList: true
65PenaltyBreakBeforeFirstCallParameter: 19
66PenaltyBreakComment: 300
67PenaltyBreakFirstLessLess: 120
68PenaltyBreakString: 1000
69PenaltyExcessCharacter: 1000000
70PenaltyReturnTypeOnItsOwnLine: 60
71PointerAlignment: Right
72ReflowComments:  true
73SortIncludes:    true
74SpaceAfterCStyleCast: false
75SpaceBeforeAssignmentOperators: true
76SpaceBeforeParens: ControlStatements
77SpaceInEmptyParentheses: false
78SpacesBeforeTrailingComments: 1
79SpacesInAngles:  false
80SpacesInContainerLiterals: true
81SpacesInCStyleCastParentheses: false
82SpacesInParentheses: false
83SpacesInSquareBrackets: false
84Standard:        Cpp11
85TabWidth:        8
86UseTab:          Never
87...
88