mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-06 22:24:06 -05:00
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
Language: Cpp
|
|
AlignAfterOpenBracket: AlwaysBreak
|
|
AlignConsecutiveMacros: true
|
|
AlignTrailingComments: true
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowShortBlocksOnASingleLine: true
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: All
|
|
AllowShortIfStatementsOnASingleLine: true
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BinPackArguments: true
|
|
BinPackParameters: false
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterClass: true
|
|
AfterFunction: true
|
|
BreakBeforeBinaryOperators: false
|
|
BreakBeforeTernaryOperators: true
|
|
ColumnLimit: 120
|
|
ContinuationIndentWidth: 2
|
|
Cpp11BracedListStyle: true
|
|
DisableFormat: false
|
|
IndentFunctionDeclarationAfterType: false
|
|
IndentWidth: 2
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
MaxEmptyLinesToKeep: 1
|
|
NamespaceIndentation: All
|
|
PointerAlignment: Left
|
|
SortIncludes: false
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesInAngles: false
|
|
SpacesInContainerLiterals: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInParentheses: false
|
|
Standard: c++17
|
|
UseTab: Never |