1
1
Fork 0
mirror of https://github.com/trafi/maybe-result-cpp synced 2024-05-08 23:16:11 +02:00
maybe-result-cpp/.clang-format
2016-07-08 13:32:08 +03:00

23 lines
671 B
YAML

---
Language: Cpp
BasedOnStyle: WebKit
AllowAllParametersOfDeclarationOnNextLine: true
BinPackArguments: false
BinPackParameters: false
ColumnLimit: 100
ConstructorInitializerAllOnOneLineOrOnePerLine: true
Cpp11BracedListStyle: true
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
AlignAfterOpenBracket: true
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakTemplateDeclarations: true
IndentCaseLabels: true
PenaltyBreakBeforeFirstCallParameter: 1
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 200
NamespaceIndentation: All
Standard: Cpp11