mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-03-21 17:55:44 -05:00
* swap Jokers * Hide score properly * add key_released to inputs triggering selection_grid process input * format code * Add suggestions and bug fixes from @MeirGavish * Add comment * format selection_grid * toto * format * format * Turned clang-format off for selection grid rows * revert reroll bug fix, already adressed * format selection_grid.c * Move conditions around in game.c * typo * Attempt at fixing braced initializer indent format --------- Co-authored-by: MathisMartin31 <mathis.martin31@gmail.com> Co-authored-by: MeirGavish <meir.gavish@gmail.com>
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
UseTab: Never
|
|
|
|
# Allman brace style
|
|
BreakBeforeBraces: Allman
|
|
AllowShortBlocksOnASingleLine: false
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: None
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
|
# Pointer alignment
|
|
PointerAlignment: Left
|
|
|
|
# Column limit
|
|
ColumnLimit: 100
|
|
|
|
# Case labels
|
|
IndentCaseLabels: true
|
|
|
|
# Include sorting
|
|
SortIncludes: CaseSensitive
|
|
IncludeBlocks: Regroup
|
|
|
|
ContinuationIndentWidth: 4
|
|
AlignArrayOfStructures: Left
|
|
PackConstructorInitializers: Never
|
|
|
|
SpaceBeforeParens: Custom
|
|
SpaceBeforeParensOptions:
|
|
AfterControlStatements: true
|
|
AfterFunctionDefinitionName: false
|
|
|
|
AlignOperands: AlignAfterOperator
|
|
BreakBeforeBinaryOperators: None
|
|
|
|
IndentPPDirectives: None
|
|
AlignConsecutiveMacros: Consecutive
|
|
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AlignAfterOpenBracket: BlockIndent
|
|
PenaltyBreakBeforeFirstCallParameter: 0
|
|
|
|
ReflowComments: true
|
|
SpacesInLineCommentPrefix:
|
|
Minimum: 1
|
|
Maximum: 1
|
|
|
|
PenaltyReturnTypeOnItsOwnLine: 99999999
|
|
AlignEscapedNewlines: Left
|
|
|
|
BracedInitializerIndentWidth: 0 |