From 3d03d5b616751fe964eea2aa87400a8e55579f1b Mon Sep 17 00:00:00 2001 From: Blagovest Petrov Date: Thu, 28 Jan 2021 18:45:19 +0200 Subject: [PATCH] Added clang-format config Signed-off-by: Blagovest Petrov --- .clang-format | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ appveyor.yml | 4 ++-- 2 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..8d32bb2 --- /dev/null +++ b/.clang-format @@ -0,0 +1,63 @@ +# Copyright (C) 2016 Olivier Goffart +# +# You may use this file under the terms of the 3-clause BSD license. +# See the file LICENSE from this package for details. + +# This is the clang-format configuration style to be used by Qt, +# based on the rules from https://wiki.qt.io/Qt_Coding_Style and +# https://wiki.qt.io/Coding_Conventions + +--- +# Webkit style was loosely based on the Qt style +BasedOnStyle: WebKit + +Standard: Cpp11 +ColumnLimit: 0 + +# Disable reflow of qdoc comments: indentation rules are different. +# Translation comments are also excluded +CommentPragmas: "^!|^:" + +# We want a space between the type and the star for pointer types +PointerBindsToType: false + +# We want to break before the operators, but not before a '=' +BreakBeforeBinaryOperators: NonAssignment + +# Braces are usually attached, but not after functions or classes declaration +BreakBeforeBraces: Custom +BraceWrapping: + AfterClass: true + AfterControlStatement: false + AfterEnum: false + AfterFunction: true + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: true + AfterUnion: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + +# The coding style does not specify the following, but this is what gives +# results closest to the existing code. +AlignAfterOpenBracket: DontAlign +AlwaysBreakTemplateDeclarations: true + +# Ideally we should also allow less short function in a single line, but +# clang-format does not handle that +AllowShortFunctionsOnASingleLine: Inline + +# The coding style specifies some include order categories, but also tells to +# separate categories with an empty line. It does not specify the order within +# the categories. Since the SortInclude feature of clang-format does not +# re-order includes separated by empty lines, the feature is not used. +SortIncludes: false + +# macros for which the opening brace stays attached +ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE ] + +# Allow two empty lines for structuring +MaxEmptyLinesToKeep: 2 +KeepEmptyLinesAtTheStartOfBlocks: false + diff --git a/appveyor.yml b/appveyor.yml index 66bbfe2..03a7478 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,7 @@ install: & cmd /C "git clone -q --depth=1 git://anongit.kde.org/craftmaster.git C:\CraftMaster\CraftMaster 2>&1" craft $env:TARGET -i craft - craft $env:TARGET --install-deps owncloud-client + craft $env:TARGET --install-deps tangraplay build_script: - ps: | @@ -37,7 +37,7 @@ on_finish: test_script: - ps: | - craft $env:TARGET --src-dir $env:APPVEYOR_BUILD_FOLDER --test owncloud-client + craft $env:TARGET --src-dir $env:APPVEYOR_BUILD_FOLDER --test tangraplay environment: matrix: