1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00
rpcs3/.clang-format

32 lines
929 B
Plaintext
Raw Normal View History

2016-08-12 13:32:57 +02:00
Standard: Cpp11
2016-08-28 11:35:56 +02:00
UseTab: ForIndentation
2016-08-12 13:32:57 +02:00
TabWidth: 1
2016-08-27 19:12:24 +02:00
IndentWidth: 1
2016-08-12 13:32:57 +02:00
AccessModifierOffset: -1
PointerAlignment: Left
NamespaceIndentation: All
ColumnLimit: 200
2016-08-12 13:32:57 +02:00
BreakBeforeBraces: Allman
2016-08-28 11:35:56 +02:00
BreakConstructorInitializersBeforeComma: true
2016-08-12 13:32:57 +02:00
BreakBeforeBinaryOperators: false
BreakBeforeTernaryOperators: false
AlwaysBreakTemplateDeclarations: true
2018-05-01 12:15:37 +02:00
AllowShortIfStatementsOnASingleLine: false
AllowShortBlocksOnASingleLine: false
2016-08-12 13:32:57 +02:00
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: false
2018-05-01 12:15:37 +02:00
AllowShortLoopsOnASingleLine: false
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