mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-26 01:03:15 +03:00
Fixes: #188 Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Norbert Pocs <npocs@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
28 lines
724 B
YAML
28 lines
724 B
YAML
---
|
|
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
UseTab: Never
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterEnum: false
|
|
AfterFunction: true
|
|
AfterStruct: false
|
|
AfterUnion: false
|
|
AfterExternBlock: true
|
|
BeforeElse: false
|
|
BeforeWhile: false
|
|
IndentCaseLabels: false
|
|
IndentCaseBlocks: false
|
|
ColumnLimit: 80
|
|
AlignAfterOpenBracket: Align
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AlwaysBreakAfterReturnType: None
|
|
AlignEscapedNewlines: Left
|
|
ForEachMacros: ['ssh_callbacks_iterate']
|