10b02be92SPatrick Venture--- 20b02be92SPatrick VentureLanguage: Cpp 30b02be92SPatrick Venture# BasedOnStyle: LLVM 40b02be92SPatrick VentureAccessModifierOffset: -2 50b02be92SPatrick VentureAlignAfterOpenBracket: Align 60b02be92SPatrick VentureAlignConsecutiveAssignments: false 70b02be92SPatrick VentureAlignConsecutiveDeclarations: false 80b02be92SPatrick VentureAlignEscapedNewlinesLeft: false 90b02be92SPatrick VentureAlignOperands: true 100b02be92SPatrick VentureAlignTrailingComments: true 110b02be92SPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true 120b02be92SPatrick VentureAllowShortBlocksOnASingleLine: false 130b02be92SPatrick VentureAllowShortCaseLabelsOnASingleLine: false 140b02be92SPatrick VentureAllowShortFunctionsOnASingleLine: None 150b02be92SPatrick VentureAllowShortIfStatementsOnASingleLine: false 160b02be92SPatrick VentureAllowShortLoopsOnASingleLine: false 170b02be92SPatrick VentureAlwaysBreakAfterDefinitionReturnType: None 180b02be92SPatrick VentureAlwaysBreakAfterReturnType: None 190b02be92SPatrick VentureAlwaysBreakBeforeMultilineStrings: false 200b02be92SPatrick VentureAlwaysBreakTemplateDeclarations: true 210b02be92SPatrick VentureBinPackArguments: true 220b02be92SPatrick VentureBinPackParameters: true 230b02be92SPatrick VentureBraceWrapping: 24*82920c3dSGeorge Liu AfterCaseLabel: true 250b02be92SPatrick Venture AfterClass: true 260b02be92SPatrick Venture AfterControlStatement: true 270b02be92SPatrick Venture AfterEnum: true 280b02be92SPatrick Venture AfterFunction: true 290b02be92SPatrick Venture AfterNamespace: true 300b02be92SPatrick Venture AfterObjCDeclaration: true 310b02be92SPatrick Venture AfterStruct: true 320b02be92SPatrick Venture AfterUnion: true 330b02be92SPatrick Venture BeforeCatch: true 340b02be92SPatrick Venture BeforeElse: true 350b02be92SPatrick Venture IndentBraces: false 360b02be92SPatrick VentureBreakBeforeBinaryOperators: None 370b02be92SPatrick VentureBreakBeforeBraces: Custom 380b02be92SPatrick VentureBreakBeforeTernaryOperators: true 390b02be92SPatrick VentureBreakConstructorInitializers: AfterColon 400b02be92SPatrick VentureColumnLimit: 80 410b02be92SPatrick VentureCommentPragmas: '^ IWYU pragma:' 420b02be92SPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false 430b02be92SPatrick VentureConstructorInitializerIndentWidth: 4 440b02be92SPatrick VentureContinuationIndentWidth: 4 450b02be92SPatrick VentureCpp11BracedListStyle: true 460b02be92SPatrick VentureDerivePointerAlignment: false 470b02be92SPatrick VenturePointerAlignment: Left 480b02be92SPatrick VentureDisableFormat: false 490b02be92SPatrick VentureExperimentalAutoDetectBinPacking: false 500b02be92SPatrick VentureFixNamespaceComments: true 510b02be92SPatrick VentureForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 520b02be92SPatrick VentureIncludeBlocks: Regroup 530b02be92SPatrick VentureIncludeCategories: 540b02be92SPatrick Venture - Regex: '^[<"](gtest|gmock)' 550b02be92SPatrick Venture Priority: 5 560b02be92SPatrick Venture - Regex: '^"config.h"' 570b02be92SPatrick Venture Priority: -1 580b02be92SPatrick Venture - Regex: '^".*\.hpp"' 590b02be92SPatrick Venture Priority: 1 600b02be92SPatrick Venture - Regex: '^<.*\.h>' 610b02be92SPatrick Venture Priority: 2 620b02be92SPatrick Venture - Regex: '^<.*' 630b02be92SPatrick Venture Priority: 3 640b02be92SPatrick Venture - Regex: '.*' 650b02be92SPatrick Venture Priority: 4 660b02be92SPatrick VentureIndentCaseLabels: true 670b02be92SPatrick VentureIndentWidth: 4 680b02be92SPatrick VentureIndentWrappedFunctionNames: true 690b02be92SPatrick VentureKeepEmptyLinesAtTheStartOfBlocks: true 700b02be92SPatrick VentureMacroBlockBegin: '' 710b02be92SPatrick VentureMacroBlockEnd: '' 720b02be92SPatrick VentureMaxEmptyLinesToKeep: 1 730b02be92SPatrick VentureNamespaceIndentation: None 740b02be92SPatrick VentureObjCBlockIndentWidth: 2 750b02be92SPatrick VentureObjCSpaceAfterProperty: false 760b02be92SPatrick VentureObjCSpaceBeforeProtocolList: true 770b02be92SPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19 780b02be92SPatrick VenturePenaltyBreakComment: 300 790b02be92SPatrick VenturePenaltyBreakFirstLessLess: 120 800b02be92SPatrick VenturePenaltyBreakString: 1000 810b02be92SPatrick VenturePenaltyExcessCharacter: 1000000 820b02be92SPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60 830b02be92SPatrick VentureReflowComments: true 840b02be92SPatrick VentureSortIncludes: true 850b02be92SPatrick VentureSortUsingDeclarations: true 860b02be92SPatrick VentureSpaceAfterCStyleCast: false 870b02be92SPatrick VentureSpaceBeforeAssignmentOperators: true 880b02be92SPatrick VentureSpaceBeforeParens: ControlStatements 890b02be92SPatrick VentureSpaceInEmptyParentheses: false 900b02be92SPatrick VentureSpacesBeforeTrailingComments: 1 910b02be92SPatrick VentureSpacesInAngles: false 920b02be92SPatrick VentureSpacesInContainerLiterals: true 930b02be92SPatrick VentureSpacesInCStyleCastParentheses: false 940b02be92SPatrick VentureSpacesInParentheses: false 950b02be92SPatrick VentureSpacesInSquareBrackets: false 960b02be92SPatrick VentureStandard: Cpp11 970b02be92SPatrick VentureTabWidth: 4 980b02be92SPatrick VentureUseTab: Never 990b02be92SPatrick Venture... 1000b02be92SPatrick Venture 101