123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ---
- Language: Cpp
- # BasedOnStyle: LLVM
- AccessModifierOffset: -2
- AlignAfterOpenBracket: true
- AlignConsecutiveAssignments: false
- AlignEscapedNewlinesLeft: false
- AlignOperands: true
- AlignTrailingComments: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: All
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterDefinitionReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: false
- BinPackArguments: true
- BinPackParameters: true
- BreakBeforeBinaryOperators: None
- BreakBeforeBraces: Attach
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializersBeforeComma: false
- ColumnLimit: 120
- CommentPragmas: '^ IWYU pragma:'
- ConstructorInitializerAllOnOneLineOrOnePerLine: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DerivePointerAlignment: false
- DisableFormat: false
- ExperimentalAutoDetectBinPacking: false
- ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
- IndentCaseLabels: false
- IndentWidth: 4
- IndentWrappedFunctionNames: false
- KeepEmptyLinesAtTheStartOfBlocks: true
- MacroBlockBegin: ''
- MacroBlockEnd: ''
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: None
- ObjCBlockIndentWidth: 4
- ObjCSpaceAfterProperty: false
- ObjCSpaceBeforeProtocolList: true
- PenaltyBreakBeforeFirstCallParameter: 19
- PenaltyBreakComment: 300
- PenaltyBreakFirstLessLess: 120
- PenaltyBreakString: 1000
- PenaltyExcessCharacter: 1000000
- PenaltyReturnTypeOnItsOwnLine: 60
- PointerAlignment: Right
- SortIncludes: false
- SpaceAfterCStyleCast: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeParens: ControlStatements
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: false
- SpacesInContainerLiterals: true
- SpacesInCStyleCastParentheses: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Cpp11
- TabWidth: 8
- UseTab: Never
- ...
|