2020-02-14 09:14:28 +01:00
|
|
|
BasedOnStyle: LLVM
|
|
|
|
IndentWidth: 8
|
|
|
|
UseTab: Always
|
|
|
|
BreakBeforeBraces: Custom
|
|
|
|
BraceWrapping:
|
|
|
|
AfterClass: false
|
|
|
|
AfterEnum: false
|
|
|
|
AfterStruct: false
|
|
|
|
AfterUnion: false
|
|
|
|
AfterControlStatement: MultiLine
|
|
|
|
AfterFunction: false # should also be MultiLine, but not yet supported
|
|
|
|
AfterExternBlock: false
|
|
|
|
BeforeElse: false
|
2020-08-24 09:23:06 +02:00
|
|
|
BeforeWhile: false
|
2020-02-14 09:14:28 +01:00
|
|
|
IndentBraces: false
|
|
|
|
SplitEmptyFunction: true
|
|
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
|
|
IndentCaseLabels: false
|
|
|
|
AlwaysBreakAfterReturnType: All
|
|
|
|
Cpp11BracedListStyle: false
|
|
|
|
ColumnLimit: 80
|
|
|
|
AlignAfterOpenBracket: Align
|
2020-08-24 09:23:06 +02:00
|
|
|
AlignConsecutiveBitFields: true
|
2020-02-14 09:14:28 +01:00
|
|
|
AlignConsecutiveDeclarations: true
|
|
|
|
AlignConsecutiveMacros: true
|
|
|
|
AlignTrailingComments: true
|
|
|
|
AllowAllArgumentsOnNextLine: true
|
|
|
|
AlwaysBreakBeforeMultilineStrings: false
|
|
|
|
BreakBeforeBinaryOperators: None
|
|
|
|
BreakBeforeTernaryOperators: true
|
|
|
|
AlignEscapedNewlines: Left
|
|
|
|
DerivePointerAlignment: false
|
|
|
|
PointerAlignment: Right
|
|
|
|
PointerBindsToType: false
|
|
|
|
IncludeBlocks: Regroup
|
|
|
|
IncludeCategories:
|
|
|
|
- Regex: '^<isc/'
|
|
|
|
Priority: 2
|
|
|
|
- Regex: '^<dns/'
|
|
|
|
Priority: 3
|
|
|
|
- Regex: '^<iscccc/'
|
|
|
|
Priority: 4
|
|
|
|
- Regex: '^<isccfg/'
|
|
|
|
Priority: 5
|
|
|
|
- Regex: '^<ns/'
|
|
|
|
Priority: 6
|
|
|
|
- Regex: '^<bind9/)'
|
|
|
|
Priority: 7
|
|
|
|
- Regex: '^(<[^/]*)/)'
|
|
|
|
Priority: 8
|
2022-05-03 11:37:31 +02:00
|
|
|
- Regex: '^<tests/'
|
|
|
|
Priority: 10
|
2020-02-14 09:14:28 +01:00
|
|
|
- Regex: '<[[:alnum:].]+>'
|
|
|
|
Priority: 1
|
|
|
|
- Regex: '".*"'
|
|
|
|
Priority: 9
|
2020-08-24 09:23:06 +02:00
|
|
|
IndentExternBlock: NoIndent
|
2020-02-14 09:14:28 +01:00
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
|
|
MaxEmptyLinesToKeep: 1
|
|
|
|
PenaltyBreakAssignment: 30
|
|
|
|
PenaltyBreakComment: 10
|
|
|
|
PenaltyBreakFirstLessLess: 0
|
2020-02-17 12:05:39 -08:00
|
|
|
PenaltyBreakString: 80
|
2020-02-14 09:14:28 +01:00
|
|
|
PenaltyExcessCharacter: 100
|
|
|
|
Standard: Cpp11
|
|
|
|
ContinuationIndentWidth: 8
|