1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- ---
- AccessModifierOffset: -1
- AlignAfterOpenBracket: AlwaysBreak
- AlignConsecutiveAssignments: false
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlinesLeft: true
- AlignOperands: false
- AlignTrailingComments: false
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: Empty
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: true
- AlwaysBreakTemplateDeclarations: true
- BinPackArguments: false
- BinPackParameters: false
- BraceWrapping:
- AfterClass: false
- AfterControlStatement: false
- AfterEnum: false
- AfterFunction: false
- AfterNamespace: false
- AfterObjCDeclaration: false
- AfterStruct: false
- AfterUnion: false
- BeforeCatch: false
- BeforeElse: false
- IndentBraces: false
- BreakBeforeBinaryOperators: None
- BreakBeforeBraces: Attach
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializersBeforeComma: false
- BreakAfterJavaFieldAnnotations: false
- BreakStringLiterals: false
- ColumnLimit: 80
- CommentPragmas: '^ IWYU pragma:'
- #CompactNamespaces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DerivePointerAlignment: false
- DisableFormat: false
- ForEachMacros: [ FOR_EACH_RANGE, FOR_EACH, ]
- IncludeCategories:
- - Regex: '^<.*\.h(pp)?>'
- Priority: 1
- - Regex: '^<.*'
- Priority: 2
- - Regex: '.*'
- Priority: 3
- IndentCaseLabels: true
- IndentWidth: 2
- IndentWrappedFunctionNames: false
- KeepEmptyLinesAtTheStartOfBlocks: false
- MacroBlockBegin: ''
- MacroBlockEnd: ''
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: None
- PenaltyBreakBeforeFirstCallParameter: 1
- PenaltyBreakComment: 300
- PenaltyBreakFirstLessLess: 120
- PenaltyBreakString: 1000
- PenaltyExcessCharacter: 1000000
- PenaltyReturnTypeOnItsOwnLine: 2000000
- PointerAlignment: Left
- ReflowComments: true
- SortIncludes: true
- 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
- ---
- Language: ObjC
- ColumnLimit: 120
- AlignAfterOpenBracket: Align
- ObjCBlockIndentWidth: 2
- ObjCSpaceAfterProperty: false
- ObjCSpaceBeforeProtocolList: false
- ...
|