metaforce/.clang-format

30 lines
784 B
Plaintext
Raw Permalink Normal View History

2016-07-13 22:11:38 -07:00
---
2018-12-07 21:30:43 -08:00
BasedOnStyle: LLVM
2016-07-13 22:11:38 -07:00
ColumnLimit: 120
UseTab: Never
2020-07-07 01:34:35 -07:00
TabWidth: 2
2016-07-13 22:11:38 -07:00
---
Language: Cpp
DerivePointerAlignment: false
PointerAlignment: Left
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
IndentCaseLabels: false
2020-07-07 01:34:35 -07:00
AllowShortBlocksOnASingleLine: Always
2016-07-13 22:11:38 -07:00
AlignOperands: true
AlignTrailingComments: true
AlwaysBreakBeforeMultilineStrings: true
2020-07-07 01:34:35 -07:00
AlwaysBreakTemplateDeclarations: Yes
2016-07-13 22:11:38 -07:00
BreakConstructorInitializersBeforeComma: true
AlwaysBreakAfterReturnType: None
AlwaysBreakAfterDefinitionReturnType: None
AllowShortFunctionsOnASingleLine: All
Cpp11BracedListStyle: true
NamespaceIndentation: None
BinPackArguments: true
BinPackParameters: true
SortIncludes: false
2018-12-07 21:30:43 -08:00
AccessModifierOffset: -2
2016-07-13 22:11:38 -07:00
ConstructorInitializerIndentWidth: 0
2020-07-07 01:34:35 -07:00
ConstructorInitializerAllOnOneLineOrOnePerLine: true