• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1AccessModifierOffset: -4
2
3AlignAfterOpenBracket: Align
4AlignConsecutiveAssignments: false
5AlignConsecutiveDeclarations: false
6AlignEscapedNewlinesLeft: false
7AlignOperands:   true
8AlignTrailingComments: true
9
10AllowAllParametersOfDeclarationOnNextLine: false
11
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: Inline
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
17
18AlwaysBreakAfterDefinitionReturnType: None
19AlwaysBreakBeforeMultilineStrings: false
20AlwaysBreakTemplateDeclarations: false
21
22BinPackArguments: true
23BinPackParameters: false
24BraceWrapping:
25  AfterControlStatement: false
26  AfterEnum:       false
27  AfterFunction:   true
28  AfterStruct:     false
29  AfterUnion:      false
30  BeforeCatch:     false
31  BeforeElse:      false
32  IndentBraces:    false
33
34BreakBeforeBinaryOperators: None
35BreakBeforeBraces: Custom
36BreakBeforeTernaryOperators: true
37
38ColumnLimit:     80
39CommentPragmas:  '^ IWYU pragma:'
40ContinuationIndentWidth: 4
41DerivePointerAlignment: false
42DisableFormat:   false
43ExperimentalAutoDetectBinPacking: false
44
45IndentCaseLabels: false
46IndentWidth:     4
47IndentWrappedFunctionNames: false
48
49KeepEmptyLinesAtTheStartOfBlocks: false
50
51MaxEmptyLinesToKeep: 1
52
53PenaltyBreakBeforeFirstCallParameter: 16
54PenaltyBreakComment: 300
55PenaltyBreakFirstLessLess: 120
56PenaltyBreakString: 1000
57PenaltyExcessCharacter: 1000
58PenaltyReturnTypeOnItsOwnLine: 9000
59
60Cpp11BracedListStyle: false
61
62PointerAlignment: Right
63
64ReflowComments:  true
65
66SortIncludes: false
67
68SpaceAfterCStyleCast: false
69SpaceBeforeAssignmentOperators: true
70SpaceBeforeParens: ControlStatements
71SpaceInEmptyParentheses: false
72SpacesBeforeTrailingComments: 1
73SpacesInAngles:  false
74SpacesInContainerLiterals: true
75SpacesInCStyleCastParentheses: false
76SpacesInParentheses: false
77SpacesInSquareBrackets: false
78TabWidth:        4
79UseTab:          Never
80