This repository has been archived on 2021-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
dynarray/.clang-format

62 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2021-08-10 18:12:17 +00:00
---
2021-09-11 19:42:38 +00:00
Standard: Auto
Language: Cpp
2021-08-10 18:12:17 +00:00
BasedOnStyle: LLVM
2021-09-11 19:42:38 +00:00
ColumnLimit: 0
IndentWidth: 8
TabWidth: 8
UseTab: ForIndentation
AlignConsecutiveAssignments: true
AlignConsecutiveBitFields: true
AlignConsecutiveDeclarations: true
AlignConsecutiveMacros: true
2021-08-10 18:12:17 +00:00
AlignEscapedNewlines: Left
2021-09-11 19:42:38 +00:00
AlignOperands: AlignAfterOperator
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: Always
AllowShortCaseLabelsOnASingleLine: true
AllowShortEnumsOnASingleLine: true
2021-08-10 18:12:17 +00:00
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Always
2021-09-11 19:42:38 +00:00
AllowShortLoopsOnASingleLine: true
2021-08-10 18:12:17 +00:00
AlwaysBreakAfterDefinitionReturnType: TopLevel
2021-09-11 19:42:38 +00:00
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakBeforeMultilineStrings: false
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: All
BreakBeforeBraces: Attach
BreakBeforeTernaryOperators: true
BreakStringLiterals: false
BreakConstructorInitializers: AfterColon
IndentCaseLabels: true
2021-08-10 18:12:17 +00:00
IndentPPDirectives: None
2021-09-11 19:42:38 +00:00
IndentGotoLabels: true
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ContinuationIndentWidth: 2
Cpp11BracedListStyle: true
IncludeBlocks: Regroup
InsertTrailingCommas: Wrapped
PointerAlignment: Right
ReflowComments: true
SortIncludes: true
SpaceAfterCStyleCast: true
SpaceAfterLogicalNot: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: true
SpaceBeforeParens: Always
SpacesInConditionalStatement: false
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
2021-08-10 18:12:17 +00:00
...