mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
36 lines
1 KiB
YAML
36 lines
1 KiB
YAML
Language: Cpp
|
|
BasedOnStyle: Google
|
|
|
|
# The following parameters are default for Google style,
|
|
# but as they are important for our project they
|
|
# are set explicitly here
|
|
AlignAfterOpenBracket: Align
|
|
BreakBeforeBinaryOperators: None
|
|
ColumnLimit: 80
|
|
PointerAlignment: Left
|
|
SpaceAfterCStyleCast: false
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 2
|
|
SpacesInAngles: false
|
|
SpacesInContainerLiterals: true
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
UseTab: Never
|
|
|
|
# Non-default parametes
|
|
NamespaceIndentation: All
|
|
IndentWidth: 4
|
|
TabWidth: 4
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
BinPackParameters: false
|
|
BinPackArguments: false
|
|
ExperimentalAutoDetectBinPacking: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
#AlignConsecutiveAssignments: yes
|
|
#AlignConsecutiveDeclarations: yes
|
|
BreakStringLiterals: false
|
|
ReflowComments: true
|