1*0b02be92SPatrick Venture---
2*0b02be92SPatrick VentureLanguage:        Cpp
3*0b02be92SPatrick Venture# BasedOnStyle:  LLVM
4*0b02be92SPatrick VentureAccessModifierOffset: -2
5*0b02be92SPatrick VentureAlignAfterOpenBracket: Align
6*0b02be92SPatrick VentureAlignConsecutiveAssignments: false
7*0b02be92SPatrick VentureAlignConsecutiveDeclarations: false
8*0b02be92SPatrick VentureAlignEscapedNewlinesLeft: false
9*0b02be92SPatrick VentureAlignOperands:   true
10*0b02be92SPatrick VentureAlignTrailingComments: true
11*0b02be92SPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
12*0b02be92SPatrick VentureAllowShortBlocksOnASingleLine: false
13*0b02be92SPatrick VentureAllowShortCaseLabelsOnASingleLine: false
14*0b02be92SPatrick VentureAllowShortFunctionsOnASingleLine: None
15*0b02be92SPatrick VentureAllowShortIfStatementsOnASingleLine: false
16*0b02be92SPatrick VentureAllowShortLoopsOnASingleLine: false
17*0b02be92SPatrick VentureAlwaysBreakAfterDefinitionReturnType: None
18*0b02be92SPatrick VentureAlwaysBreakAfterReturnType: None
19*0b02be92SPatrick VentureAlwaysBreakBeforeMultilineStrings: false
20*0b02be92SPatrick VentureAlwaysBreakTemplateDeclarations: true
21*0b02be92SPatrick VentureBinPackArguments: true
22*0b02be92SPatrick VentureBinPackParameters: true
23*0b02be92SPatrick VentureBraceWrapping:
24*0b02be92SPatrick Venture  AfterClass:      true
25*0b02be92SPatrick Venture  AfterControlStatement: true
26*0b02be92SPatrick Venture  AfterEnum:       true
27*0b02be92SPatrick Venture  AfterFunction:   true
28*0b02be92SPatrick Venture  AfterNamespace:  true
29*0b02be92SPatrick Venture  AfterObjCDeclaration: true
30*0b02be92SPatrick Venture  AfterStruct:     true
31*0b02be92SPatrick Venture  AfterUnion:      true
32*0b02be92SPatrick Venture  BeforeCatch:     true
33*0b02be92SPatrick Venture  BeforeElse:      true
34*0b02be92SPatrick Venture  IndentBraces:    false
35*0b02be92SPatrick VentureBreakBeforeBinaryOperators: None
36*0b02be92SPatrick VentureBreakBeforeBraces: Custom
37*0b02be92SPatrick VentureBreakBeforeTernaryOperators: true
38*0b02be92SPatrick VentureBreakConstructorInitializers: AfterColon
39*0b02be92SPatrick VentureColumnLimit:     80
40*0b02be92SPatrick VentureCommentPragmas:  '^ IWYU pragma:'
41*0b02be92SPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false
42*0b02be92SPatrick VentureConstructorInitializerIndentWidth: 4
43*0b02be92SPatrick VentureContinuationIndentWidth: 4
44*0b02be92SPatrick VentureCpp11BracedListStyle: true
45*0b02be92SPatrick VentureDerivePointerAlignment: false
46*0b02be92SPatrick VenturePointerAlignment: Left
47*0b02be92SPatrick VentureDisableFormat:   false
48*0b02be92SPatrick VentureExperimentalAutoDetectBinPacking: false
49*0b02be92SPatrick VentureFixNamespaceComments: true
50*0b02be92SPatrick VentureForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
51*0b02be92SPatrick VentureIncludeBlocks: Regroup
52*0b02be92SPatrick VentureIncludeCategories:
53*0b02be92SPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
54*0b02be92SPatrick Venture    Priority:        5
55*0b02be92SPatrick Venture  - Regex:           '^"config.h"'
56*0b02be92SPatrick Venture    Priority:        -1
57*0b02be92SPatrick Venture  - Regex:           '^".*\.hpp"'
58*0b02be92SPatrick Venture    Priority:        1
59*0b02be92SPatrick Venture  - Regex:           '^<.*\.h>'
60*0b02be92SPatrick Venture    Priority:        2
61*0b02be92SPatrick Venture  - Regex:           '^<.*'
62*0b02be92SPatrick Venture    Priority:        3
63*0b02be92SPatrick Venture  - Regex:           '.*'
64*0b02be92SPatrick Venture    Priority:        4
65*0b02be92SPatrick VentureIndentCaseLabels: true
66*0b02be92SPatrick VentureIndentWidth:     4
67*0b02be92SPatrick VentureIndentWrappedFunctionNames: true
68*0b02be92SPatrick VentureKeepEmptyLinesAtTheStartOfBlocks: true
69*0b02be92SPatrick VentureMacroBlockBegin: ''
70*0b02be92SPatrick VentureMacroBlockEnd:   ''
71*0b02be92SPatrick VentureMaxEmptyLinesToKeep: 1
72*0b02be92SPatrick VentureNamespaceIndentation: None
73*0b02be92SPatrick VentureObjCBlockIndentWidth: 2
74*0b02be92SPatrick VentureObjCSpaceAfterProperty: false
75*0b02be92SPatrick VentureObjCSpaceBeforeProtocolList: true
76*0b02be92SPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19
77*0b02be92SPatrick VenturePenaltyBreakComment: 300
78*0b02be92SPatrick VenturePenaltyBreakFirstLessLess: 120
79*0b02be92SPatrick VenturePenaltyBreakString: 1000
80*0b02be92SPatrick VenturePenaltyExcessCharacter: 1000000
81*0b02be92SPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
82*0b02be92SPatrick VentureReflowComments:  true
83*0b02be92SPatrick VentureSortIncludes:    true
84*0b02be92SPatrick VentureSortUsingDeclarations: true
85*0b02be92SPatrick VentureSpaceAfterCStyleCast: false
86*0b02be92SPatrick VentureSpaceBeforeAssignmentOperators: true
87*0b02be92SPatrick VentureSpaceBeforeParens: ControlStatements
88*0b02be92SPatrick VentureSpaceInEmptyParentheses: false
89*0b02be92SPatrick VentureSpacesBeforeTrailingComments: 1
90*0b02be92SPatrick VentureSpacesInAngles:  false
91*0b02be92SPatrick VentureSpacesInContainerLiterals: true
92*0b02be92SPatrick VentureSpacesInCStyleCastParentheses: false
93*0b02be92SPatrick VentureSpacesInParentheses: false
94*0b02be92SPatrick VentureSpacesInSquareBrackets: false
95*0b02be92SPatrick VentureStandard:        Cpp11
96*0b02be92SPatrick VentureTabWidth:        4
97*0b02be92SPatrick VentureUseTab:          Never
98*0b02be92SPatrick Venture...
99*0b02be92SPatrick Venture
100