rpcs3/.clang-format

33 lines
961 B
Plaintext
Raw Normal View History

Standard: c++20
UseTab: AlignWithSpaces
TabWidth: 4
IndentWidth: 4
AccessModifierOffset: -4
2016-08-12 11:32:57 +00:00
PointerAlignment: Left
NamespaceIndentation: All
ColumnLimit: 0
2016-08-12 11:32:57 +00:00
BreakBeforeBraces: Allman
BreakConstructorInitializers: BeforeColon
BreakBeforeBinaryOperators: None
2016-08-12 11:32:57 +00:00
BreakBeforeTernaryOperators: false
AlwaysBreakTemplateDeclarations: Yes
AllowShortIfStatementsOnASingleLine: Never
AllowShortBlocksOnASingleLine: Never
2016-08-12 11:32:57 +00:00
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Empty
2018-05-01 10:15:37 +00:00
AllowShortLoopsOnASingleLine: false
2022-04-09 12:51:22 +00:00
AllowShortLambdasOnASingleLine: Empty
2016-08-12 11:32:57 +00:00
Cpp11BracedListStyle: true
IndentCaseLabels: false
SortIncludes: false
ReflowComments: true
2022-10-22 09:00:47 +00:00
AlignConsecutiveAssignments: false
2016-08-12 11:32:57 +00:00
AlignTrailingComments: true
2016-08-27 17:12:24 +00:00
AlignAfterOpenBracket: DontAlign
2016-08-12 11:32:57 +00:00
ConstructorInitializerAllOnOneLineOrOnePerLine: false
BinPackArguments: true
BinPackParameters: true
AlwaysBreakAfterReturnType: None
KeepEmptyLinesAtTheStartOfBlocks: true
IndentWrappedFunctionNames: false