mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
91 lines
2.5 KiB
YAML
91 lines
2.5 KiB
YAML
---
|
|
BasedOnStyle: LLVM
|
|
AccessModifierOffset: -3
|
|
AlignAfterOpenBracket: Align
|
|
AlignConsecutiveAssignments: AcrossEmptyLinesAndComments
|
|
AlignConsecutiveMacros: AcrossEmptyLinesAndComments
|
|
AlignOperands: Align
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowAllConstructorInitializersOnNextLine: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AllowShortBlocksOnASingleLine: Always
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: All
|
|
AllowShortIfStatementsOnASingleLine: Always
|
|
AllowShortLambdasOnASingleLine: All
|
|
AllowShortLoopsOnASingleLine: true
|
|
AlwaysBreakAfterReturnType: All
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
AttributeMacros:
|
|
- asm
|
|
- WUT_FORMAT_PRINTF
|
|
BinPackParameters: false
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterCaseLabel: false
|
|
AfterClass: true
|
|
AfterControlStatement: Never
|
|
AfterEnum: true
|
|
AfterExternBlock: false
|
|
AfterStruct: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterUnion: true
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: false
|
|
SplitEmptyRecord: true
|
|
BreakBeforeBinaryOperators: None
|
|
BreakBeforeTernaryOperators: true
|
|
BreakConstructorInitializers: AfterColon
|
|
BreakInheritanceList: BeforeColon
|
|
ColumnLimit: 0
|
|
CompactNamespaces: false
|
|
ConstructorInitializerIndentWidth: 3
|
|
ContinuationIndentWidth: 3
|
|
FixNamespaceComments: true
|
|
IncludeBlocks: Preserve
|
|
IncludeCategories:
|
|
# Include wut headers first
|
|
- Regex: '^[<|"]wut'
|
|
Priority: 1
|
|
- Regex: '^<'
|
|
Priority: 2
|
|
- Regex: '^"'
|
|
Priority: 3
|
|
IndentAccessModifiers: false
|
|
IndentCaseLabels: true
|
|
IndentPPDirectives: None
|
|
IndentWidth: 3
|
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
MaxEmptyLinesToKeep: 2
|
|
NamespaceIndentation: None
|
|
ObjCSpaceAfterProperty: false
|
|
ObjCSpaceBeforeProtocolList: true
|
|
PackConstructorInitializers: BinPack
|
|
PointerAlignment: Right
|
|
ReflowComments: false
|
|
SeparateDefinitionBlocks: Leave
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterLogicalNot: false
|
|
SpaceAfterTemplateKeyword: false
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeCpp11BracedList: false
|
|
SpaceBeforeCtorInitializerColon: true
|
|
SpaceBeforeInheritanceColon: true
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceBeforeRangeBasedForLoopColon: true
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesInAngles: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInContainerLiterals: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
TabWidth: 4
|
|
TypenameMacros:
|
|
- BOOL
|
|
- RPLWRAP
|
|
UseTab: Never
|