| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- Language: Cpp
- AccessModifierOffset: -2
- AlignAfterOpenBracket: Align
- AlignConsecutiveAssignments: false
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlines: Left
- AlignOperands: true
- AlignTrailingComments: true
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: All
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: No
- BinPackArguments: true
- BinPackParameters: true
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: true
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: false
- AfterStruct: true
- AfterUnion: true
- BeforeCatch: true
- BeforeElse: true
- IndentBraces: false
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
- BreakBeforeBinaryOperators: All
- BreakBeforeBraces: Custom
- BreakBeforeInheritanceComma: false
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializersBeforeComma: false
- BreakConstructorInitializers: BeforeComma
- BreakAfterJavaFieldAnnotations: false
- BreakStringLiterals: true
- ColumnLimit: 0
- CommentPragmas: '^ IWYU pragma:'
- CompactNamespaces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
- ConstructorInitializerIndentWidth: 2
- ContinuationIndentWidth: 0
- Cpp11BracedListStyle: true
- DerivePointerAlignment: false
- DisableFormat: false
- ExperimentalAutoDetectBinPacking: false
- FixNamespaceComments: true
- IncludeCategories:
- - Regex: '^<Q.*'
- Priority: 300
- - Regex: '^<qgs.*'
- Priority: 200
- - Regex: '<.*'
- Priority: 400
- - Regex: '^".*'
- Priority: 100
- - Regex: '.*'
- Priority: 1
- IncludeIsMainRegex: false
- IncludeBlocks: Regroup
- IndentAccessModifiers: true
- IndentCaseLabels: true
- IndentWidth: 2
- IndentWrappedFunctionNames: true
- JavaScriptQuotes: Leave
- JavaScriptWrapImports: true
- KeepEmptyLinesAtTheStartOfBlocks: false
- # Do not add QT_BEGIN_NAMESPACE/QT_END_NAMESPACE as this will indent lines in between.
- MacroBlockBegin: ""
- MacroBlockEnd: ""
- MaxEmptyLinesToKeep: 2
- NamespaceIndentation: All
- ObjCBlockIndentWidth: 4
- ObjCSpaceAfterProperty: false
- ObjCSpaceBeforeProtocolList: true
- PenaltyBreakAssignment: 150
- PenaltyBreakBeforeFirstCallParameter: 300
- PenaltyBreakComment: 500
- PenaltyBreakFirstLessLess: 400
- PenaltyBreakString: 600
- PenaltyExcessCharacter: 50
- PenaltyReturnTypeOnItsOwnLine: 300
- PointerAlignment: Right
- ReflowComments: false
- SortIncludes: true
- SortUsingDeclarations: true
- SpaceAfterCStyleCast: true
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCpp11BracedList: true
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: ControlStatements
- SpaceBeforeRangeBasedForLoopColon: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: false
- SpacesInContainerLiterals: false
- SpacesInCStyleCastParentheses: true
- SpacesInParentheses: true
- SpacesInSquareBrackets: false
- Standard: Cpp11
- TabWidth: 2
- UseTab: Never
- ---
- Language: Java
- TabWidth: 4
- IndentWidth: 4
- AllowShortBlocksOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
|