rpcs3/.clang-format

32 lines
929 B
Plaintext
Raw Normal View History

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