1--- 2Language: Cpp 3# BasedOnStyle: LLVM 4AccessModifierOffset: -4 5AlignAfterOpenBracket: Align 6AlignConsecutiveAssignments: false 7AlignConsecutiveDeclarations: false 8AlignEscapedNewlinesLeft: false 9AlignOperands: true 10AlignTrailingComments: true 11AllowAllParametersOfDeclarationOnNextLine: true 12AllowShortBlocksOnASingleLine: false 13AllowShortCaseLabelsOnASingleLine: false 14AllowShortFunctionsOnASingleLine: Empty 15AllowShortIfStatementsOnASingleLine: false 16AllowShortLoopsOnASingleLine: false 17AlwaysBreakAfterDefinitionReturnType: None 18AlwaysBreakAfterReturnType: None 19AlwaysBreakBeforeMultilineStrings: false 20AlwaysBreakTemplateDeclarations: true 21BinPackArguments: true 22BinPackParameters: true 23BraceWrapping: 24 AfterClass: false 25 AfterControlStatement: false 26 AfterEnum: false 27 AfterFunction: false 28 AfterNamespace: false 29 AfterObjCDeclaration: false 30 AfterStruct: false 31 AfterUnion: false 32 BeforeCatch: false 33 BeforeElse: false 34 IndentBraces: false 35BreakBeforeBinaryOperators: None 36BreakBeforeBraces: Attach 37BreakBeforeTernaryOperators: true 38BreakConstructorInitializersBeforeComma: false 39ColumnLimit: 100 40CommentPragmas: '^ IWYU pragma:' 41ConstructorInitializerAllOnOneLineOrOnePerLine: false 42ConstructorInitializerIndentWidth: 4 43ContinuationIndentWidth: 4 44Cpp11BracedListStyle: true 45DerivePointerAlignment: false 46DisableFormat: false 47ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 48IncludeCategories: 49 - Regex: '^\<[^Q][^/.>]*\>' 50 Priority: -2 51 - Regex: '^\<' 52 Priority: -1 53 - Regex: '^\"' 54 Priority: 0 55IndentCaseLabels: false 56IndentWidth: 4 57IndentWrappedFunctionNames: false 58KeepEmptyLinesAtTheStartOfBlocks: true 59MacroBlockBegin: '' 60MacroBlockEnd: '' 61MaxEmptyLinesToKeep: 1 62NamespaceIndentation: None 63ObjCBlockIndentWidth: 2 64ObjCSpaceAfterProperty: false 65ObjCSpaceBeforeProtocolList: true 66PenaltyBreakBeforeFirstCallParameter: 19 67PenaltyBreakComment: 300 68PenaltyBreakFirstLessLess: 120 69PenaltyBreakString: 1000 70PenaltyExcessCharacter: 1000000 71PenaltyReturnTypeOnItsOwnLine: 150 72PointerAlignment: Left 73ReflowComments: true 74SortIncludes: true 75SpaceAfterCStyleCast: false 76SpaceBeforeAssignmentOperators: true 77SpaceBeforeParens: ControlStatements 78SpaceInEmptyParentheses: false 79SpacesBeforeTrailingComments: 1 80SpacesInAngles: false 81SpacesInContainerLiterals: true 82SpacesInCStyleCastParentheses: false 83SpacesInParentheses: false 84SpacesInSquareBrackets: false 85Standard: Cpp11 86TabWidth: 4 87UseTab: Never 88... 89