8c5e60de83
All the code in zenity from now, will follow this format style
35 lines
939 B
YAML
35 lines
939 B
YAML
---
|
|
BasedOnStyle: GNU
|
|
AlignAfterOpenBracket: DontAlign
|
|
AlignConsecutiveAssignments: 'false'
|
|
AlignConsecutiveDeclarations: 'false'
|
|
AlignOperands: 'false'
|
|
AlignTrailingComments: 'false'
|
|
AllowAllParametersOfDeclarationOnNextLine: 'false'
|
|
AllowShortBlocksOnASingleLine: 'false'
|
|
AllowShortCaseLabelsOnASingleLine: 'false'
|
|
AllowShortFunctionsOnASingleLine: 'None'
|
|
AllowShortLoopsOnASingleLine: 'false'
|
|
AllowShortIfStatementsOnASingleLine: 'false'
|
|
BinPackArguments: 'false'
|
|
BinPackParameters: 'true'
|
|
BreakBeforeBinaryOperators: None
|
|
BreakBeforeBraces: Attach
|
|
BreakBeforeTernaryOperators: 'true'
|
|
BreakConstructorInitializersBeforeComma: 'true'
|
|
Cpp11BracedListStyle: true
|
|
ColumnLimit: '80'
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
|
|
IndentCaseLabels: 'true'
|
|
Language: Cpp
|
|
NamespaceIndentation: None
|
|
PointerAlignment: Right
|
|
SortIncludes: 'true'
|
|
SpaceAfterCStyleCast: 'true'
|
|
Standard: Cpp03
|
|
IndentWidth: 4
|
|
TabWidth: 4
|
|
UseTab: Always
|
|
...
|
|
|