From 76863ac11fb27e6f88aa862488a79572bdc68db0 Mon Sep 17 00:00:00 2001 From: raizo <35413558+iraizo@users.noreply.github.com> Date: Sat, 17 Jul 2021 15:04:39 +0200 Subject: [PATCH] fix(format/clang-format): Acessmodifieroffset & line breaks (#7005) --- .clang-format | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.clang-format b/.clang-format index ea84d6ab6..367d8885a 100644 --- a/.clang-format +++ b/.clang-format @@ -1,4 +1,5 @@ ---- +--- +AccessModifierOffset: '-4' AlignConsecutiveMacros: 'true' AlignConsecutiveAssignments: 'true' AlignConsecutiveDeclarations: 'true' @@ -14,7 +15,9 @@ AllowShortLoopsOnASingleLine: 'true' BinPackArguments: 'true' BinPackParameters: 'true' BreakBeforeBraces: Allman +ColumnLimit: '500' IndentWidth: '4' +PointerAlignment: Left SpaceAfterCStyleCast: 'true' SpaceBeforeCpp11BracedList: 'true' SpaceBeforeParens: ControlStatements @@ -24,11 +27,7 @@ SpacesInAngles: 'false' SpacesInCStyleCastParentheses: 'false' SpacesInContainerLiterals: 'false' SpacesInParentheses: 'false' -Standard: Latest TabWidth: '0' UseTab: Never -PointerAlignment: Left -ColumnLimit: 0 - ...