From 21ff6eec817dc0fdead763e9360e5959a93da03c Mon Sep 17 00:00:00 2001 From: karl Date: Tue, 16 Mar 2021 18:01:48 +0100 Subject: [PATCH] Update clang-format --- .clang-format | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.clang-format b/.clang-format index a63e137..f0139cc 100644 --- a/.clang-format +++ b/.clang-format @@ -1,13 +1,14 @@ --- BasedOnStyle: LLVM -AllowShortBlocksOnASingleLine: 'true' -AllowShortCaseLabelsOnASingleLine: 'true' -AllowShortFunctionsOnASingleLine: Inline +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: true +AllowShortFunctionsOnASingleLine: None AllowShortIfStatementsOnASingleLine: WithoutElse AllowShortLambdasOnASingleLine: Inline -AllowShortLoopsOnASingleLine: 'false' -AlwaysBreakBeforeMultilineStrings: 'true' -IndentWidth: '4' +AllowShortLoopsOnASingleLine: false +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: true +IndentWidth: 4 ColumnLimit: 100 ...