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