Files
ARMSX3/.clang-format
T

33 lines
961 B
YAML
Raw Normal View History

2020-12-29 13:40:16 -08:00
Standard: c++20
UseTab: AlignWithSpaces
2020-12-29 13:40:16 -08:00
TabWidth: 4
IndentWidth: 4
AccessModifierOffset: -4
2016-08-12 14:32:57 +03:00
PointerAlignment: Left
NamespaceIndentation: All
2020-12-29 13:40:16 -08:00
ColumnLimit: 0
2016-08-12 14:32:57 +03:00
BreakBeforeBraces: Allman
2020-12-29 13:40:16 -08:00
BreakConstructorInitializers: BeforeColon
BreakBeforeBinaryOperators: None
2016-08-12 14:32:57 +03:00
BreakBeforeTernaryOperators: false
2020-12-29 13:40:16 -08:00
AlwaysBreakTemplateDeclarations: Yes
AllowShortIfStatementsOnASingleLine: Never
AllowShortBlocksOnASingleLine: Never
2016-08-12 14:32:57 +03:00
AllowShortCaseLabelsOnASingleLine: true
2020-12-29 13:40:16 -08:00
AllowShortFunctionsOnASingleLine: Empty
2018-05-01 13:15:37 +03:00
AllowShortLoopsOnASingleLine: false
2022-04-09 14:51:22 +02:00
AllowShortLambdasOnASingleLine: Empty
2016-08-12 14:32:57 +03:00
Cpp11BracedListStyle: true
IndentCaseLabels: false
SortIncludes: false
ReflowComments: true
2022-10-22 11:00:47 +02:00
AlignConsecutiveAssignments: false
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