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