1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-01-26 09:35:27 +00:00
rpcs3/.clang-format

32 lines
929 B
Plaintext
Raw Normal View History

2016-08-12 14:32:57 +03:00
Standard: Cpp11
2016-08-28 12:35:56 +03:00
UseTab: ForIndentation
2016-08-12 14:32:57 +03:00
TabWidth: 1
2016-08-27 19:12:24 +02:00
IndentWidth: 1
2016-08-12 14:32:57 +03:00
AccessModifierOffset: -1
PointerAlignment: Left
NamespaceIndentation: All
ColumnLimit: 200
2016-08-12 14:32:57 +03:00
BreakBeforeBraces: Allman
2016-08-28 12:35:56 +03:00
BreakConstructorInitializersBeforeComma: true
2016-08-12 14:32:57 +03:00
BreakBeforeBinaryOperators: false
BreakBeforeTernaryOperators: false
AlwaysBreakTemplateDeclarations: true
2018-05-01 13:15:37 +03:00
AllowShortIfStatementsOnASingleLine: false
AllowShortBlocksOnASingleLine: false
2016-08-12 14:32:57 +03:00
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: false
2018-05-01 13:15:37 +03:00
AllowShortLoopsOnASingleLine: false
2016-08-12 14:32:57 +03:00
Cpp11BracedListStyle: true
IndentCaseLabels: false
SortIncludes: false
ReflowComments: true
2016-08-28 12:35:56 +03:00
AlignConsecutiveAssignments: true
2016-08-12 14:32:57 +03:00
AlignTrailingComments: true
2016-08-27 19:12:24 +02:00
AlignAfterOpenBracket: DontAlign
2016-08-12 14:32:57 +03:00
ConstructorInitializerAllOnOneLineOrOnePerLine: false
BinPackArguments: true
BinPackParameters: true
AlwaysBreakAfterReturnType: None
KeepEmptyLinesAtTheStartOfBlocks: true
IndentWrappedFunctionNames: false