1f0f02b9aSMatt Spinler---
2f0f02b9aSMatt SpinlerLanguage:        Cpp
3f0f02b9aSMatt Spinler# BasedOnStyle:  LLVM
4f0f02b9aSMatt SpinlerAccessModifierOffset: -2
5f0f02b9aSMatt SpinlerAlignAfterOpenBracket: Align
6f0f02b9aSMatt SpinlerAlignConsecutiveAssignments: false
7f0f02b9aSMatt SpinlerAlignConsecutiveDeclarations: false
82c4fbc4cSPatrick WilliamsAlignEscapedNewlines: Right
9*b7ed5773SPatrick WilliamsAlignOperands:  Align
10*b7ed5773SPatrick WilliamsAlignTrailingComments:
11*b7ed5773SPatrick Williams  Kind: Always
12*b7ed5773SPatrick Williams  OverEmptyLines: 1
13f0f02b9aSMatt SpinlerAllowAllParametersOfDeclarationOnNextLine: true
14*b7ed5773SPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
15f0f02b9aSMatt SpinlerAllowShortCaseLabelsOnASingleLine: false
16*b7ed5773SPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
17f0f02b9aSMatt SpinlerAllowShortIfStatementsOnASingleLine: false
18f0f02b9aSMatt SpinlerAllowShortLoopsOnASingleLine: false
19f0f02b9aSMatt SpinlerAlwaysBreakAfterReturnType: None
20f0f02b9aSMatt SpinlerAlwaysBreakBeforeMultilineStrings: false
212c4fbc4cSPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes
22f0f02b9aSMatt SpinlerBinPackArguments: true
23f0f02b9aSMatt SpinlerBinPackParameters: true
24f0f02b9aSMatt SpinlerBraceWrapping:
252c4fbc4cSPatrick Williams  AfterCaseLabel:  true
26f0f02b9aSMatt Spinler  AfterClass:      true
27f0f02b9aSMatt Spinler  AfterControlStatement: true
28f0f02b9aSMatt Spinler  AfterEnum:       true
29f0f02b9aSMatt Spinler  AfterFunction:   true
30f0f02b9aSMatt Spinler  AfterNamespace:  true
31f0f02b9aSMatt Spinler  AfterObjCDeclaration: true
32f0f02b9aSMatt Spinler  AfterStruct:     true
33f0f02b9aSMatt Spinler  AfterUnion:      true
342c4fbc4cSPatrick Williams  AfterExternBlock: true
35f0f02b9aSMatt Spinler  BeforeCatch:     true
36f0f02b9aSMatt Spinler  BeforeElse:      true
37f0f02b9aSMatt Spinler  IndentBraces:    false
382c4fbc4cSPatrick Williams  SplitEmptyFunction:   false
392c4fbc4cSPatrick Williams  SplitEmptyRecord:     false
402c4fbc4cSPatrick Williams  SplitEmptyNamespace:  false
41*b7ed5773SPatrick WilliamsBreakAfterAttributes: Never
42f0f02b9aSMatt SpinlerBreakBeforeBinaryOperators: None
43f0f02b9aSMatt SpinlerBreakBeforeBraces: Custom
44f0f02b9aSMatt SpinlerBreakBeforeTernaryOperators: true
45f0f02b9aSMatt SpinlerBreakConstructorInitializers: AfterColon
462c4fbc4cSPatrick WilliamsBreakInheritanceList: AfterColon
47*b7ed5773SPatrick WilliamsBreakStringLiterals: false
48f0f02b9aSMatt SpinlerColumnLimit:     80
49f0f02b9aSMatt SpinlerCommentPragmas:  '^ IWYU pragma:'
502c4fbc4cSPatrick WilliamsCompactNamespaces: false
51f0f02b9aSMatt SpinlerConstructorInitializerAllOnOneLineOrOnePerLine: false
52f0f02b9aSMatt SpinlerConstructorInitializerIndentWidth: 4
53f0f02b9aSMatt SpinlerContinuationIndentWidth: 4
54f0f02b9aSMatt SpinlerCpp11BracedListStyle: true
55*b7ed5773SPatrick WilliamsDeriveLineEnding: false
56f0f02b9aSMatt SpinlerDerivePointerAlignment: false
57f0f02b9aSMatt SpinlerPointerAlignment: Left
58f0f02b9aSMatt SpinlerDisableFormat:   false
59f0f02b9aSMatt SpinlerExperimentalAutoDetectBinPacking: false
60f0f02b9aSMatt SpinlerFixNamespaceComments: true
61f0f02b9aSMatt SpinlerForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
62f0f02b9aSMatt SpinlerIncludeBlocks: Regroup
63f0f02b9aSMatt SpinlerIncludeCategories:
64f0f02b9aSMatt Spinler  - Regex:           '^[<"](gtest|gmock)'
652c4fbc4cSPatrick Williams    Priority:        7
66f0f02b9aSMatt Spinler  - Regex:           '^"config.h"'
67f0f02b9aSMatt Spinler    Priority:        -1
682c4fbc4cSPatrick Williams  - Regex:           '^".*\.h"'
69f0f02b9aSMatt Spinler    Priority:        1
702c4fbc4cSPatrick Williams  - Regex:           '^".*\.hpp"'
71f0f02b9aSMatt Spinler    Priority:        2
722c4fbc4cSPatrick Williams  - Regex:           '^<.*\.h>'
73f0f02b9aSMatt Spinler    Priority:        3
742c4fbc4cSPatrick Williams  - Regex:           '^<.*\.hpp>'
75f0f02b9aSMatt Spinler    Priority:        4
762c4fbc4cSPatrick Williams  - Regex:           '^<.*'
772c4fbc4cSPatrick Williams    Priority:        5
782c4fbc4cSPatrick Williams  - Regex:           '.*'
792c4fbc4cSPatrick Williams    Priority:        6
80f0f02b9aSMatt SpinlerIndentCaseLabels: true
81*b7ed5773SPatrick WilliamsIndentRequiresClause: true
82f0f02b9aSMatt SpinlerIndentWidth:     4
83f0f02b9aSMatt SpinlerIndentWrappedFunctionNames: true
84*b7ed5773SPatrick WilliamsInsertNewlineAtEOF: true
85*b7ed5773SPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
86*b7ed5773SPatrick WilliamsLambdaBodyIndentation: OuterScope
87*b7ed5773SPatrick WilliamsLineEnding: LF
88f0f02b9aSMatt SpinlerMacroBlockBegin: ''
89f0f02b9aSMatt SpinlerMacroBlockEnd:   ''
90f0f02b9aSMatt SpinlerMaxEmptyLinesToKeep: 1
91f0f02b9aSMatt SpinlerNamespaceIndentation: None
92f0f02b9aSMatt SpinlerObjCBlockIndentWidth: 2
93f0f02b9aSMatt SpinlerObjCSpaceAfterProperty: false
94f0f02b9aSMatt SpinlerObjCSpaceBeforeProtocolList: true
95*b7ed5773SPatrick WilliamsPenaltyBreakAssignment: 25
96f0f02b9aSMatt SpinlerPenaltyBreakBeforeFirstCallParameter: 19
97f0f02b9aSMatt SpinlerPenaltyBreakComment: 300
98f0f02b9aSMatt SpinlerPenaltyBreakFirstLessLess: 120
99f0f02b9aSMatt SpinlerPenaltyBreakString: 1000
100f0f02b9aSMatt SpinlerPenaltyExcessCharacter: 1000000
101f0f02b9aSMatt SpinlerPenaltyReturnTypeOnItsOwnLine: 60
102*b7ed5773SPatrick WilliamsPenaltyIndentedWhitespace: 0
103*b7ed5773SPatrick WilliamsQualifierAlignment: Left
104*b7ed5773SPatrick WilliamsReferenceAlignment: Left
105f0f02b9aSMatt SpinlerReflowComments:  true
106*b7ed5773SPatrick WilliamsRequiresClausePosition: OwnLine
107*b7ed5773SPatrick WilliamsRequiresExpressionIndentation: Keyword
108f0f02b9aSMatt SpinlerSortIncludes:    true
109f0f02b9aSMatt SpinlerSortUsingDeclarations: true
110f0f02b9aSMatt SpinlerSpaceAfterCStyleCast: false
1112c4fbc4cSPatrick WilliamsSpaceAfterTemplateKeyword: true
112f0f02b9aSMatt SpinlerSpaceBeforeAssignmentOperators: true
1132c4fbc4cSPatrick WilliamsSpaceBeforeCpp11BracedList: false
1142c4fbc4cSPatrick WilliamsSpaceBeforeCtorInitializerColon: true
1152c4fbc4cSPatrick WilliamsSpaceBeforeInheritanceColon: true
116f0f02b9aSMatt SpinlerSpaceBeforeParens: ControlStatements
1172c4fbc4cSPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true
118f0f02b9aSMatt SpinlerSpaceInEmptyParentheses: false
119f0f02b9aSMatt SpinlerSpacesBeforeTrailingComments: 1
120f0f02b9aSMatt SpinlerSpacesInAngles:  false
121f0f02b9aSMatt SpinlerSpacesInContainerLiterals: true
122f0f02b9aSMatt SpinlerSpacesInCStyleCastParentheses: false
123f0f02b9aSMatt SpinlerSpacesInParentheses: false
124f0f02b9aSMatt SpinlerSpacesInSquareBrackets: false
1252c4fbc4cSPatrick WilliamsStandard:        Latest
126f0f02b9aSMatt SpinlerTabWidth:        4
127f0f02b9aSMatt SpinlerUseTab:          Never
128f0f02b9aSMatt Spinler...
129f0f02b9aSMatt Spinler
130