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