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