2024-08-04 16:27:15 +00:00
|
|
|
# ---
|
|
|
|
Language: Cpp
|
|
|
|
# The Based on style flag causes nothing to work.
|
|
|
|
#BasedOnStyle: None
|
2024-08-04 15:11:49 +00:00
|
|
|
AlignTrailingComments: true
|
2024-08-04 16:27:15 +00:00
|
|
|
AlignArrayOfStructures: Left
|
|
|
|
|
|
|
|
AlignConsecutiveAssignments:
|
|
|
|
Enabled: true
|
|
|
|
AcrossEmptyLines: true
|
|
|
|
AcrossComments: false
|
|
|
|
|
|
|
|
AlignConsecutiveBitFields:
|
|
|
|
Enabled: true
|
|
|
|
AcrossEmptyLines: true
|
|
|
|
AcrossComments: false
|
|
|
|
|
|
|
|
AlignConsecutiveDeclarations:
|
|
|
|
Enabled: true
|
|
|
|
AcrossEmptyLines: true
|
|
|
|
AcrossComments: false
|
|
|
|
|
|
|
|
AlignConsecutiveShortCaseStatements:
|
|
|
|
Enabled: true
|
|
|
|
AcrossEmptyLines: true
|
|
|
|
AcrossComments: true
|
|
|
|
AlignCaseColons: false
|
|
|
|
|
|
|
|
AllowAllArgumentsOnNextLine: true
|
|
|
|
AllowAllConstructorInitializersOnNextLine: true
|
|
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
|
|
AllowShortBlocksOnASingleLine: true
|
|
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
|
|
AllowShortEnumsOnASingleLine: false
|
|
|
|
AllowShortFunctionsOnASingleLine: false
|
|
|
|
AllowShortIfStatementsOnASingleLine: true
|
|
|
|
|
2024-08-04 15:11:49 +00:00
|
|
|
BreakBeforeBraces: Allman
|
|
|
|
ColumnLimit: 0
|
|
|
|
IndentWidth: 4
|
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
|
|
ObjCSpaceAfterProperty: true
|
|
|
|
ObjCSpaceBeforeProtocolList: true
|
|
|
|
PointerBindsToType: false
|
|
|
|
SpacesBeforeTrailingComments: 1
|
|
|
|
TabWidth: 8
|
2024-08-04 16:27:15 +00:00
|
|
|
UseTab: Never
|
|
|
|
|