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