sm64pc/.clang-format

19 lines
471 B
Plaintext
Raw Normal View History

2019-08-25 06:46:40 +02:00
IndentWidth: 4
2019-09-01 21:50:50 +02:00
Language: Cpp
2019-08-25 06:46:40 +02:00
AlignAfterOpenBracket: Align
SortIncludes: false
ColumnLimit: 104
PointerAlignment: Right
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
BinPackArguments: true
BinPackParameters: true
SpaceAfterCStyleCast: true
2019-09-01 21:50:50 +02:00
BreakBeforeBraces: Attach
2019-08-25 06:46:40 +02:00
BreakBeforeTernaryOperators: true
BreakBeforeBinaryOperators: NonAssignment
Cpp11BracedListStyle: false
IndentCaseLabels: true
AlignTrailingComments: true
2019-09-01 21:50:50 +02:00
UseTab: Never