1
1
mirror of https://github.com/trafi/maybe-result-cpp synced 2024-11-22 02:32:02 +01:00
maybe-result-cpp/.clang-format

23 lines
671 B
Plaintext
Raw Permalink Normal View History

2016-07-05 21:59:12 +02:00
---
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
2016-07-05 21:59:12 +02:00
NamespaceIndentation: All
Standard: Cpp11