1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00
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 13:32:57 +02:00
PointerAlignment: Left
NamespaceIndentation: All
ColumnLimit: 0
2016-08-12 13:32:57 +02:00
BreakBeforeBraces: Allman
BreakConstructorInitializers: BeforeColon
BreakBeforeBinaryOperators: None
2016-08-12 13:32:57 +02:00
BreakBeforeTernaryOperators: false
AlwaysBreakTemplateDeclarations: Yes
AllowShortIfStatementsOnASingleLine: Never
AllowShortBlocksOnASingleLine: Never
2016-08-12 13:32:57 +02:00
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Empty
2018-05-01 12:15:37 +02:00
AllowShortLoopsOnASingleLine: false
AllowShortLambdasOnASingleLine: Inline
2016-08-12 13:32:57 +02:00
Cpp11BracedListStyle: true
IndentCaseLabels: false
SortIncludes: false
ReflowComments: true
2016-08-28 11:35:56 +02:00
AlignConsecutiveAssignments: true
2016-08-12 13:32:57 +02:00
AlignTrailingComments: true
2016-08-27 19:12:24 +02:00
AlignAfterOpenBracket: DontAlign
2016-08-12 13:32:57 +02:00
ConstructorInitializerAllOnOneLineOrOnePerLine: false
BinPackArguments: true
BinPackParameters: true
AlwaysBreakAfterReturnType: None
KeepEmptyLinesAtTheStartOfBlocks: true
IndentWrappedFunctionNames: false