mirror of
https://github.com/pret/pokeplatinum.git
synced 2025-02-05 21:37:31 +00:00
99 lines
2.3 KiB
YAML
99 lines
2.3 KiB
YAML
---
|
|
BasedOnStyle: WebKit
|
|
Language: Cpp
|
|
LineEnding: LF
|
|
ColumnLimit: 0
|
|
|
|
AlignAfterOpenBracket: DontAlign
|
|
AlignConsecutiveAssignments: None
|
|
AlignConsecutiveBitFields: None
|
|
AlignConsecutiveDeclarations: None
|
|
AlignConsecutiveMacros: Consecutive
|
|
AlignTrailingComments: false
|
|
|
|
AllowShortBlocksOnASingleLine: Empty
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
AllowShortEnumsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: None
|
|
AllowShortIfStatementsOnASingleLine: Never
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BitFieldColonSpacing: Both
|
|
|
|
InsertBraces: true
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterCaseLabel: false
|
|
AfterClass: false
|
|
AfterControlStatement: Never
|
|
AfterEnum: false
|
|
AfterFunction: true
|
|
AfterStruct: false
|
|
AfterUnion: false
|
|
BeforeElse: false
|
|
BeforeWhile: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: true
|
|
SplitEmptyRecord: false
|
|
|
|
AlwaysBreakAfterReturnType: None
|
|
BreakBeforeBinaryOperators: All
|
|
BreakBeforeTernaryOperators: true
|
|
BreakStringLiterals: true
|
|
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Right
|
|
ReferenceAlignment: Right
|
|
|
|
ContinuationIndentWidth: 4
|
|
IndentCaseBlocks: false
|
|
IndentCaseLabels: false
|
|
IndentGotoLabels: false
|
|
IndentPPDirectives: None
|
|
IndentWidth: 4
|
|
|
|
SortIncludes: CaseSensitive
|
|
IncludeBlocks: Regroup
|
|
IncludeCategories:
|
|
- Regex: '((<.+>)|("nitro/.*\.h"))'
|
|
Priority: 1
|
|
- Regex: '"(consts|constants|generated)/.*\.h"'
|
|
Priority: 2
|
|
- Regex: '"(struct_(decls|defs))/.*\.h"'
|
|
Priority: 3
|
|
- Regex: '"(constdata|res)/.*\.(h|naix)"'
|
|
Priority: 6
|
|
- Regex: '"[[:alnum:]_]+/.*\.(h|naix)"'
|
|
Priority: 4
|
|
- Regex: '"[[:alnum:]_]+\.(h|naix)"'
|
|
Priority: 5
|
|
- Regex: '.*'
|
|
Priority: 7
|
|
|
|
InsertTrailingCommas: Wrapped
|
|
InsertNewlineAtEOF: true
|
|
KeepEmptyLinesAtEOF: false
|
|
MaxEmptyLinesToKeep: 1
|
|
RemoveParentheses: ReturnStatement
|
|
RemoveSemicolon: true
|
|
|
|
# QualifierAlignment: Custom
|
|
# QualifierOrder: [static, inline, const, volatile, type]
|
|
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterLogicalNot: false
|
|
SpaceAroundPointerQualifiers: Default
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeCaseColon: false
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceBeforeSquareBrackets: false
|
|
SpaceInEmptyBlock: false
|
|
SpaceInEmptyParentheses: false
|
|
SpacesInContainerLiterals: true
|
|
SpacesInLineCommentPrefix:
|
|
Minimum: 1
|
|
Maximum: -1
|
|
SpacesInParens: Never
|