123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- Language: Cpp
-
-
- AccessModifierOffset: -2
-
-
- AlignEscapedNewlinesLeft: true
-
-
- AlignTrailingComments: true
-
-
- AllowAllParametersOfDeclarationOnNextLine: false
-
-
- AllowShortFunctionsOnASingleLine: false
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
-
-
- AlwaysBreakBeforeMultilineStrings: false
-
-
- AlwaysBreakTemplateDeclarations: false
-
-
- AlwaysBreakAfterDefinitionReturnType: true
-
-
- BinPackArguments: false
- BinPackParameters: false
-
-
- BreakBeforeBinaryOperators: None
-
-
-
- BreakBeforeBraces: Linux
-
-
- BreakBeforeTernaryOperators: false
-
-
- BreakConstructorInitializersBeforeComma: false
-
-
- ColumnLimit: 100
-
-
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
-
-
- ConstructorInitializerIndentWidth: 8
-
-
- ContinuationIndentWidth: 0
-
-
- Cpp11BracedListStyle: false
-
-
- DerivePointerAlignment: false
-
-
- IndentCaseLabels: true
-
-
- IndentFunctionDeclarationAfterType: false
-
-
- IndentWidth: 4
-
-
- KeepEmptyLinesAtTheStartOfBlocks: false
-
-
- MaxEmptyLinesToKeep: 2
-
-
- NamespaceIndentation: None
-
-
- ObjCSpaceAfterProperty: true
- ObjCSpaceBeforeProtocolList: true
-
-
- PenaltyBreakBeforeFirstCallParameter: 100
- PenaltyBreakComment: 10
- PenaltyBreakFirstLessLess: 0
- PenaltyBreakString: 100
- PenaltyExcessCharacter: 20
- PenaltyReturnTypeOnItsOwnLine: 20
-
-
- PointerAlignment: Left
-
-
- SpaceAfterCStyleCast: true
- SpaceBeforeAssignmentOperators: true
-
-
- SpaceBeforeParens: ControlStatements
-
-
- SpacesBeforeTrailingComments: 1
-
-
- SpaceInEmptyParentheses: false
- SpacesInAngles: false
- SpacesInCStyleCastParentheses: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
-
-
- Standard: Cpp11
-
-
- TabWidth: 4
-
-
- UseTab: Never
|