libabigail/.clang-format
Matthias Maennich 29d1d80165 clang-format: Minor correction to not break parameters on the first line
Before:
   someLongFunction(
    argument1,
    argument2);

After:
   someLongFunction(argument1,
                    argument2);

	* .clang-format: correct function parameter break/indentation

Signed-off-by: Matthias Maennich <maennich@google.com>
2021-04-01 09:51:20 +02:00

21 lines
553 B
YAML

# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
---
BasedOnStyle: GNU
Standard: c++11
AlignConsecutiveDeclarations: true
AlwaysBreakAfterReturnType: All
BreakConstructorInitializers: BeforeColon
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 2
IndentWidth: 2
AlignAfterOpenBracket: Align
BinPackParameters: false
BreakStringLiterals: false
PointerAlignment: Left
SortUsingDeclarations: false
SpaceBeforeParens: ControlStatements
TabWidth: 8
UseTab: Always
BreakBeforeBinaryOperators: NonAssignment
---