mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-04 16:28:00 +01:00
b034b153d7
clang-format 13 started to enforce at least one space after //. Let's not touch the comments to prevent spurious line changes.
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
---
|
|
AccessModifierOffset: '-2'
|
|
AlignAfterOpenBracket: DontAlign
|
|
AlignConsecutiveAssignments: 'false'
|
|
AlignConsecutiveDeclarations: 'false'
|
|
AlignOperands: 'false'
|
|
AlignTrailingComments: 'false'
|
|
AllowShortBlocksOnASingleLine: 'true'
|
|
AllowShortFunctionsOnASingleLine: 'true'
|
|
AllowShortIfStatementsOnASingleLine: 'true'
|
|
AllowShortLoopsOnASingleLine: 'false'
|
|
BinPackArguments: 'true'
|
|
BinPackParameters: 'true'
|
|
BreakBeforeBinaryOperators: None
|
|
BreakBeforeBraces: Attach
|
|
BreakBeforeTernaryOperators: 'true'
|
|
ColumnLimit: '0'
|
|
ContinuationIndentWidth: '2'
|
|
Cpp11BracedListStyle: 'true'
|
|
DerivePointerAlignment: 'false'
|
|
IndentCaseLabels: 'true'
|
|
IndentWidth: '2'
|
|
IndentWrappedFunctionNames: 'true'
|
|
KeepEmptyLinesAtTheStartOfBlocks: 'false'
|
|
Language: Cpp
|
|
MaxEmptyLinesToKeep: '1'
|
|
NamespaceIndentation: All
|
|
PointerAlignment: Left
|
|
SortIncludes: 'true'
|
|
SpaceAfterCStyleCast: 'false'
|
|
SpaceBeforeAssignmentOperators: 'true'
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceInEmptyParentheses: 'false'
|
|
SpacesBeforeTrailingComments: '1'
|
|
SpacesInAngles: 'false'
|
|
SpacesInCStyleCastParentheses: 'false'
|
|
SpacesInLineCommentPrefix:
|
|
Minimum: 0
|
|
Maximum: -1
|
|
SpacesInParentheses: 'false'
|
|
SpacesInSquareBrackets: 'false'
|
|
Standard: Cpp11
|
|
TabWidth: '2'
|
|
UseTab: Always
|