1dace680fSPatrick Venture---
2dace680fSPatrick VentureLanguage:        Cpp
3dace680fSPatrick Venture# BasedOnStyle:  LLVM
4dace680fSPatrick VentureAccessModifierOffset: -2
5dace680fSPatrick VentureAlignAfterOpenBracket: Align
6dace680fSPatrick VentureAlignConsecutiveAssignments: false
7dace680fSPatrick VentureAlignConsecutiveDeclarations: false
8*39084b4aSPatrick WilliamsAlignEscapedNewlines: Right
9*39084b4aSPatrick WilliamsAlignOperands:  Align
10*39084b4aSPatrick WilliamsAlignTrailingComments:
11*39084b4aSPatrick Williams  Kind: Always
12*39084b4aSPatrick Williams  OverEmptyLines: 1
13dace680fSPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
14*39084b4aSPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
15dace680fSPatrick VentureAllowShortCaseLabelsOnASingleLine: false
16*39084b4aSPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
17dace680fSPatrick VentureAllowShortIfStatementsOnASingleLine: false
18dace680fSPatrick VentureAllowShortLoopsOnASingleLine: false
19dace680fSPatrick VentureAlwaysBreakAfterReturnType: None
20dace680fSPatrick VentureAlwaysBreakBeforeMultilineStrings: false
21*39084b4aSPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes
22dace680fSPatrick VentureBinPackArguments: true
23dace680fSPatrick VentureBinPackParameters: true
24dace680fSPatrick VentureBraceWrapping:
25*39084b4aSPatrick Williams  AfterCaseLabel:  true
26dace680fSPatrick Venture  AfterClass:      true
27dace680fSPatrick Venture  AfterControlStatement: true
28dace680fSPatrick Venture  AfterEnum:       true
29dace680fSPatrick Venture  AfterFunction:   true
30dace680fSPatrick Venture  AfterNamespace:  true
31dace680fSPatrick Venture  AfterObjCDeclaration: true
32dace680fSPatrick Venture  AfterStruct:     true
33dace680fSPatrick Venture  AfterUnion:      true
34*39084b4aSPatrick Williams  AfterExternBlock: true
35dace680fSPatrick Venture  BeforeCatch:     true
36dace680fSPatrick Venture  BeforeElse:      true
37dace680fSPatrick Venture  IndentBraces:    false
38*39084b4aSPatrick Williams  SplitEmptyFunction:   false
39*39084b4aSPatrick Williams  SplitEmptyRecord:     false
40*39084b4aSPatrick Williams  SplitEmptyNamespace:  false
41*39084b4aSPatrick WilliamsBreakAfterAttributes: Never
42dace680fSPatrick VentureBreakBeforeBinaryOperators: None
43dace680fSPatrick VentureBreakBeforeBraces: Custom
44dace680fSPatrick VentureBreakBeforeTernaryOperators: true
45dace680fSPatrick VentureBreakConstructorInitializers: AfterColon
46*39084b4aSPatrick WilliamsBreakInheritanceList: AfterColon
47*39084b4aSPatrick WilliamsBreakStringLiterals: false
48dace680fSPatrick VentureColumnLimit:     80
49dace680fSPatrick VentureCommentPragmas:  '^ IWYU pragma:'
50*39084b4aSPatrick WilliamsCompactNamespaces: false
51dace680fSPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false
52dace680fSPatrick VentureConstructorInitializerIndentWidth: 4
53dace680fSPatrick VentureContinuationIndentWidth: 4
54dace680fSPatrick VentureCpp11BracedListStyle: true
55*39084b4aSPatrick WilliamsDeriveLineEnding: false
56dace680fSPatrick VentureDerivePointerAlignment: false
57dace680fSPatrick VenturePointerAlignment: Left
58dace680fSPatrick VentureDisableFormat:   false
59dace680fSPatrick VentureExperimentalAutoDetectBinPacking: false
60dace680fSPatrick VentureFixNamespaceComments: true
61dace680fSPatrick VentureForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
62dace680fSPatrick VentureIncludeBlocks: Regroup
63dace680fSPatrick VentureIncludeCategories:
64dace680fSPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
65*39084b4aSPatrick Williams    Priority:        7
66dace680fSPatrick Venture  - Regex:           '^"config.h"'
67dace680fSPatrick Venture    Priority:        -1
68*39084b4aSPatrick Williams  - Regex:           '^".*\.h"'
69dace680fSPatrick Venture    Priority:        1
70*39084b4aSPatrick Williams  - Regex:           '^".*\.hpp"'
71dace680fSPatrick Venture    Priority:        2
72*39084b4aSPatrick Williams  - Regex:           '^<.*\.h>'
73dace680fSPatrick Venture    Priority:        3
74*39084b4aSPatrick Williams  - Regex:           '^<.*\.hpp>'
75dace680fSPatrick Venture    Priority:        4
76*39084b4aSPatrick Williams  - Regex:           '^<.*'
77*39084b4aSPatrick Williams    Priority:        5
78*39084b4aSPatrick Williams  - Regex:           '.*'
79*39084b4aSPatrick Williams    Priority:        6
80dace680fSPatrick VentureIndentCaseLabels: true
81*39084b4aSPatrick WilliamsIndentRequiresClause: true
82dace680fSPatrick VentureIndentWidth:     4
83dace680fSPatrick VentureIndentWrappedFunctionNames: true
84*39084b4aSPatrick WilliamsInsertNewlineAtEOF: true
85*39084b4aSPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
86*39084b4aSPatrick WilliamsLambdaBodyIndentation: OuterScope
87*39084b4aSPatrick WilliamsLineEnding: LF
88dace680fSPatrick VentureMacroBlockBegin: ''
89dace680fSPatrick VentureMacroBlockEnd:   ''
90dace680fSPatrick VentureMaxEmptyLinesToKeep: 1
91dace680fSPatrick VentureNamespaceIndentation: None
92dace680fSPatrick VentureObjCBlockIndentWidth: 2
93dace680fSPatrick VentureObjCSpaceAfterProperty: false
94dace680fSPatrick VentureObjCSpaceBeforeProtocolList: true
95*39084b4aSPatrick WilliamsPenaltyBreakAssignment: 25
96dace680fSPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19
97dace680fSPatrick VenturePenaltyBreakComment: 300
98dace680fSPatrick VenturePenaltyBreakFirstLessLess: 120
99dace680fSPatrick VenturePenaltyBreakString: 1000
100dace680fSPatrick VenturePenaltyExcessCharacter: 1000000
101dace680fSPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
102*39084b4aSPatrick WilliamsPenaltyIndentedWhitespace: 0
103*39084b4aSPatrick WilliamsQualifierAlignment: Left
104*39084b4aSPatrick WilliamsReferenceAlignment: Left
105dace680fSPatrick VentureReflowComments:  true
106*39084b4aSPatrick WilliamsRequiresClausePosition: OwnLine
107*39084b4aSPatrick WilliamsRequiresExpressionIndentation: Keyword
108dace680fSPatrick VentureSortIncludes:    true
109dace680fSPatrick VentureSortUsingDeclarations: true
110dace680fSPatrick VentureSpaceAfterCStyleCast: false
111*39084b4aSPatrick WilliamsSpaceAfterTemplateKeyword: true
112dace680fSPatrick VentureSpaceBeforeAssignmentOperators: true
113*39084b4aSPatrick WilliamsSpaceBeforeCpp11BracedList: false
114*39084b4aSPatrick WilliamsSpaceBeforeCtorInitializerColon: true
115*39084b4aSPatrick WilliamsSpaceBeforeInheritanceColon: true
116dace680fSPatrick VentureSpaceBeforeParens: ControlStatements
117*39084b4aSPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true
118dace680fSPatrick VentureSpaceInEmptyParentheses: false
119dace680fSPatrick VentureSpacesBeforeTrailingComments: 1
120dace680fSPatrick VentureSpacesInAngles:  false
121dace680fSPatrick VentureSpacesInContainerLiterals: true
122dace680fSPatrick VentureSpacesInCStyleCastParentheses: false
123dace680fSPatrick VentureSpacesInParentheses: false
124dace680fSPatrick VentureSpacesInSquareBrackets: false
125*39084b4aSPatrick WilliamsStandard:        Latest
126dace680fSPatrick VentureTabWidth:        4
127dace680fSPatrick VentureUseTab:          Never
128dace680fSPatrick Venture...
129dace680fSPatrick Venture
130