97 lines
2.7 KiB
YAML
97 lines
2.7 KiB
YAML
# Google C/C++ Code Style settings
|
|
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
|
|
Language: Cpp
|
|
BasedOnStyle: Google
|
|
AccessModifierOffset: -1
|
|
AlignAfterOpenBracket: Align
|
|
AlignConsecutiveAssignments: Consecutive
|
|
AlignOperands: Align
|
|
AllowAllArgumentsOnNextLine: true
|
|
AllowAllConstructorInitializersOnNextLine: true
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AllowShortBlocksOnASingleLine: Empty
|
|
AllowShortCaseLabelsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortIfStatementsOnASingleLine: Never
|
|
AllowShortLambdasOnASingleLine: Inline
|
|
AllowShortLoopsOnASingleLine: false
|
|
AlwaysBreakAfterReturnType: None
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BinPackArguments: true
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterCaseLabel: false
|
|
AfterClass: false
|
|
AfterStruct: false
|
|
AfterControlStatement: Never
|
|
AfterEnum: false
|
|
AfterFunction: false
|
|
AfterNamespace: false
|
|
AfterUnion: false
|
|
AfterExternBlock: false
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
BeforeLambdaBody: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: false
|
|
SplitEmptyRecord: false
|
|
SplitEmptyNamespace: false
|
|
BreakBeforeBinaryOperators: None
|
|
BreakBeforeTernaryOperators: true
|
|
BreakConstructorInitializers: BeforeColon
|
|
BreakInheritanceList: BeforeColon
|
|
ColumnLimit: 100
|
|
CompactNamespaces: false
|
|
ContinuationIndentWidth: 4
|
|
Cpp11BracedListStyle: true
|
|
DerivePointerAlignment: false
|
|
EmptyLineBeforeAccessModifier: LogicalBlock
|
|
FixNamespaceComments: true
|
|
IndentCaseLabels: true
|
|
IndentPPDirectives: None
|
|
IndentAccessModifiers: false
|
|
IndentWidth: 4
|
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
MaxEmptyLinesToKeep: 1
|
|
NamespaceIndentation: None
|
|
ObjCSpaceAfterProperty: false
|
|
ObjCSpaceBeforeProtocolList: true
|
|
PointerAlignment: Left
|
|
ReflowComments: false
|
|
SeparateDefinitionBlocks: Always
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterLogicalNot: false
|
|
SpaceAfterTemplateKeyword: true
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeCpp11BracedList: false
|
|
SpaceBeforeCtorInitializerColon: true
|
|
SpaceBeforeInheritanceColon: true
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceBeforeRangeBasedForLoopColon: true
|
|
SpaceBeforeSquareBrackets: false
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 2
|
|
SpacesInAngles: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInContainerLiterals: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
Standard: c++17
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
QualifierAlignment: Left
|
|
SortIncludes: true
|
|
IncludeBlocks: Regroup
|
|
IncludeCategories:
|
|
# Classes own header is always priority 0
|
|
# System C/C++ headers in <> with extension.
|
|
- Regex: '<([A-Za-z0-9.\Q/-_\E])+.h.*>'
|
|
Priority: 1
|
|
# System Headers in <> without extension.
|
|
- Regex: '<([A-Za-z0-9.\Q/-_\E])+>'
|
|
Priority: 2
|
|
# c Headers in "" with extension.
|
|
- Regex: '"([A-Za-z0-9.\Q/-_\E])+"'
|
|
Priority: 3
|