Patrick Venture | 3356975 | 2018-03-12 18:56:14 -0700 | [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: |
| 24 | AfterClass: true |
| 25 | AfterControlStatement: true |
| 26 | AfterEnum: true |
| 27 | AfterFunction: true |
| 28 | AfterNamespace: true |
| 29 | AfterObjCDeclaration: true |
| 30 | AfterStruct: true |
| 31 | AfterUnion: true |
| 32 | BeforeCatch: true |
| 33 | BeforeElse: true |
| 34 | IndentBraces: false |
| 35 | BreakBeforeBinaryOperators: None |
| 36 | BreakBeforeBraces: Custom |
| 37 | BreakBeforeTernaryOperators: true |
| 38 | BreakConstructorInitializers: AfterColon |
| 39 | ColumnLimit: 80 |
| 40 | CommentPragmas: '^ IWYU pragma:' |
| 41 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 42 | ConstructorInitializerIndentWidth: 4 |
| 43 | ContinuationIndentWidth: 4 |
| 44 | Cpp11BracedListStyle: true |
| 45 | DerivePointerAlignment: true |
| 46 | PointerAlignment: Left |
| 47 | DisableFormat: false |
| 48 | ExperimentalAutoDetectBinPacking: false |
| 49 | FixNamespaceComments: true |
| 50 | ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] |
| 51 | IndentCaseLabels: true |
| 52 | IndentWidth: 4 |
| 53 | IndentWrappedFunctionNames: false |
| 54 | KeepEmptyLinesAtTheStartOfBlocks: true |
| 55 | MacroBlockBegin: '' |
| 56 | MacroBlockEnd: '' |
| 57 | MaxEmptyLinesToKeep: 1 |
| 58 | NamespaceIndentation: None |
| 59 | ObjCBlockIndentWidth: 2 |
| 60 | ObjCSpaceAfterProperty: false |
| 61 | ObjCSpaceBeforeProtocolList: true |
| 62 | PenaltyBreakBeforeFirstCallParameter: 19 |
| 63 | PenaltyBreakComment: 300 |
| 64 | PenaltyBreakFirstLessLess: 120 |
| 65 | PenaltyBreakString: 1000 |
| 66 | PenaltyExcessCharacter: 1000000 |
| 67 | PenaltyReturnTypeOnItsOwnLine: 60 |
| 68 | PointerAlignment: Right |
| 69 | ReflowComments: true |
| 70 | SortIncludes: false |
| 71 | SpaceAfterCStyleCast: false |
| 72 | SpaceBeforeAssignmentOperators: true |
| 73 | SpaceBeforeParens: ControlStatements |
| 74 | SpaceInEmptyParentheses: false |
| 75 | SpacesBeforeTrailingComments: 1 |
| 76 | SpacesInAngles: false |
| 77 | SpacesInContainerLiterals: true |
| 78 | SpacesInCStyleCastParentheses: false |
| 79 | SpacesInParentheses: false |
| 80 | SpacesInSquareBrackets: false |
| 81 | Standard: Cpp11 |
| 82 | TabWidth: 4 |
| 83 | UseTab: Never |
| 84 | ... |
| 85 | |