1---
2# C format
3Language: Cpp
4
5BasedOnStyle: WebKit
6
7AlignAfterOpenBracket: Align
8AlignConsecutiveAssignments: false
9AlignConsecutiveDeclarations: false
10AlignEscapedNewlinesLeft: false
11AlignOperands: true
12AlignTrailingComments: false
13AllowAllParametersOfDeclarationOnNextLine: true
14AllowShortBlocksOnASingleLine: false
15AllowShortCaseLabelsOnASingleLine: true
16AllowShortFunctionsOnASingleLine: None
17AllowShortIfStatementsOnASingleLine: false
18AllowShortLoopsOnASingleLine: false
19AlwaysBreakAfterReturnType: AllDefinitions
20AlwaysBreakBeforeMultilineStrings: true
21BinPackArguments: false
22BinPackParameters: false
23BreakBeforeBinaryOperators: None
24BreakBeforeBraces: GNU
25BreakBeforeTernaryOperators: false
26ColumnLimit: 100
27CommentPragmas:  '^ IWYU pragma:'
28ContinuationIndentWidth: 2
29DerivePointerAlignment: false
30DisableFormat: false
31ExperimentalAutoDetectBinPacking: false
32IndentCaseLabels: false
33IndentWidth: 2
34IndentWrappedFunctionNames: false
35KeepEmptyLinesAtTheStartOfBlocks: false
36MacroBlockBegin: ''
37MacroBlockEnd:   ''
38MaxEmptyLinesToKeep: 2
39PenaltyBreakBeforeFirstCallParameter: 19
40PenaltyBreakComment: 300
41PenaltyBreakFirstLessLess: 120
42PenaltyBreakString: 1000
43PenaltyExcessCharacter: 1000000
44PointerAlignment: Right
45ReflowComments: false
46SortIncludes: false
47SpaceAfterCStyleCast: false
48SpaceBeforeAssignmentOperators: true
49SpaceBeforeParens: Always
50SpaceInEmptyParentheses: false
51SpacesBeforeTrailingComments: 1
52SpacesInContainerLiterals: true
53SpacesInCStyleCastParentheses: false
54SpacesInParentheses: false
55SpacesInSquareBrackets: false
56Standard: Cpp11
57TabWidth: 4
58UseTab: Never
59...
60
61