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