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