2021-02-04 19:20:28 +03:00
|
|
|
---
|
|
|
|
# We'll use defaults from the LLVM style, but with the following differences.
|
2019-10-25 23:12:07 +03:00
|
|
|
BasedOnStyle: LLVM
|
|
|
|
AlignAfterOpenBracket: AlwaysBreak
|
2021-02-04 19:20:28 +03:00
|
|
|
AlignEscapedNewlines: Left
|
|
|
|
AlignOperands: false
|
|
|
|
AlignTrailingComments: false
|
2019-10-25 23:12:07 +03:00
|
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
|
|
BinPackArguments: false
|
|
|
|
BinPackParameters: false
|
|
|
|
BreakBeforeBinaryOperators: All
|
2021-02-04 19:20:28 +03:00
|
|
|
BreakBeforeBraces: Allman
|
|
|
|
ColumnLimit: 100
|
2019-10-25 23:12:07 +03:00
|
|
|
Cpp11BracedListStyle: false
|
2021-02-04 19:20:28 +03:00
|
|
|
IndentCaseLabels: true
|
|
|
|
PenaltyReturnTypeOnItsOwnLine: 300
|
|
|
|
PointerAlignment: Left
|
|
|
|
...
|