| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---
- IndentWidth: 4
- TabWidth: 4
- Language: Cpp
- AccessModifierOffset: -2
- ColumnLimit: 0
- IncludeBlocks: Regroup
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: All
- PointerAlignment: Left
- SortIncludes: true
- SpaceBeforeParens: ControlStatements
- StatementMacros: ['Q_OBJECT']
- UseTab: ForIndentation
- AlignAfterOpenBracket: Align
- AlignConsecutiveAssignments: true
- AlignConsecutiveDeclarations: true
- AlignEscapedNewlines: DontAlign
- AlignOperands: true
- AlignTrailingComments: true
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: false
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: true
- BinPackArguments: false
- BinPackParameters: false
- BreakBeforeBraces: Allman
- BreakBeforeBinaryOperators: NonAssignment
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializers: BeforeComma
- BreakInheritanceList: BeforeComma
|