1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # Copyright (c) 2015-present, Parse, LLC.
- # All rights reserved.
- #
- # This source code is licensed under the BSD-style license found in the
- # LICENSE file in the root directory of this source tree. An additional grant
- # of patent rights can be found in the PATENTS file in the same directory.
- ---
- Language: Cpp
- BasedOnStyle: LLVM
- AccessModifierOffset: -2
- AlignAfterOpenBracket: true
- AlignEscapedNewlinesLeft: true
- AlignOperands: true
- AlignTrailingComments: false
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortIfStatementsOnASingleLine: true
- AllowShortLoopsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: false
- AlwaysBreakAfterDefinitionReturnType: false
- AlwaysBreakTemplateDeclarations: false
- AlwaysBreakBeforeMultilineStrings: false
- BreakBeforeBinaryOperators: None
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializersBeforeComma: true
- BinPackParameters: true
- BinPackArguments: true
- ColumnLimit: 0
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
- ConstructorInitializerIndentWidth: 4
- DerivePointerAlignment: true
- ExperimentalAutoDetectBinPacking: true
- IndentCaseLabels: true
- IndentWrappedFunctionNames: true
- IndentFunctionDeclarationAfterType: true
- MaxEmptyLinesToKeep: 1
- KeepEmptyLinesAtTheStartOfBlocks: true
- NamespaceIndentation: None
- ObjCBlockIndentWidth: 4
- ObjCSpaceAfterProperty: true
- ObjCSpaceBeforeProtocolList: true
- PenaltyBreakBeforeFirstCallParameter: 19
- PenaltyBreakComment: 300
- PenaltyBreakString: 1000
- PenaltyBreakFirstLessLess: 140
- PenaltyExcessCharacter: 1000000
- PenaltyReturnTypeOnItsOwnLine: 120
- PointerAlignment: Right
- SpacesBeforeTrailingComments: 1
- Cpp11BracedListStyle: true
- Standard: Cpp11
- IndentWidth: 4
- TabWidth: 4
- UseTab: Never
- BreakBeforeBraces: Attach
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- SpacesInAngles: false
- SpaceInEmptyParentheses: false
- SpacesInCStyleCastParentheses: false
- SpaceAfterCStyleCast: false
- SpacesInContainerLiterals: true
- SpaceBeforeAssignmentOperators: true
- ContinuationIndentWidth: 4
- CommentPragmas: '^ IWYU pragma:'
- ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
- SpaceBeforeParens: ControlStatements
- DisableFormat: false
- ...
|