From 15034f84a219344a7316895cccb371d34cb50d6e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Nov 2024 08:56:00 -0500 Subject: Add clang-format configuration --- .clang-format | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .clang-format (limited to '.clang-format') diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..1210a39 --- /dev/null +++ b/.clang-format @@ -0,0 +1,56 @@ +# Copyright 2020-2024 David Robillard +# SPDX-License-Identifier: 0BSD OR ISC + +--- +AlignConsecutiveAssignments: true +AlignConsecutiveDeclarations: true +AlignEscapedNewlines: Left +AttributeMacros: + - LILV_API + - LILV_DEPRECATED + - LILV_LOG_FUNC +BasedOnStyle: Mozilla +BraceWrapping: + AfterClass: true + AfterEnum: false + AfterExternBlock: false + AfterFunction: true + AfterNamespace: false + AfterStruct: false + SplitEmptyFunction: false + SplitEmptyRecord: false +BreakBeforeBraces: Custom +Cpp11BracedListStyle: true +FixNamespaceComments: true +ForEachMacros: + - FOREACH_MATCH + - LILV_FOREACH + - LV2_ATOM_OBJECT_BODY_FOREACH + - LV2_ATOM_OBJECT_FOREACH + - LV2_ATOM_SEQUENCE_BODY_FOREACH + - LV2_ATOM_SEQUENCE_FOREACH + - LV2_ATOM_TUPLE_BODY_FOREACH + - LV2_ATOM_TUPLE_FOREACH +IndentCaseLabels: false +IndentPPDirectives: AfterHash +KeepEmptyLinesAtTheStartOfBlocks: false +SpacesInContainerLiterals: false +StatementMacros: + - LILV_ERROR + - LILV_ERRORF + - LILV_NOTE + - LILV_NOTEF + - LILV_PORT_WRAP0 + - LILV_PORT_WRAP1 + - LILV_WARN + - LILV_WARNF + - LILV_WRAP0 + - LILV_WRAP0_VOID + - LILV_WRAP1 + - LILV_WRAP1_VOID + - LILV_WRAP2 + - LILV_WRAP2_VOID + - LILV_WRAP3 + - LILV_WRAP_CONVERSION + - _Pragma +... -- cgit v1.2.1