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