27 lines
634 B
YAML
27 lines
634 B
YAML
---
|
|
Language: Cpp
|
|
BasedOnStyle: LLVM
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakConstructorInitializers: BeforeComma
|
|
ColumnLimit: 120
|
|
CommentPragmas: '^(!|NOLINT)'
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
IncludeBlocks: Regroup
|
|
IncludeCategories:
|
|
- Regex: '^<.*'
|
|
Priority: 2
|
|
- Regex: '.*'
|
|
Priority: 1
|
|
IncludeIsMainRegex: '(_dt|_win)?$'
|
|
IndentCaseLabels: true
|
|
IndentWidth: 4
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
PenaltyReturnTypeOnItsOwnLine: 200
|
|
SpacesBeforeTrailingComments: 2
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
...
|