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