From cfc76b8099a8fde2a20e5c8f9ff50756a28857eb Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 26 May 2023 23:01:29 +0100 Subject: [PATCH] Fix comment spacing --- roles/home-cli/files/clang-format | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/roles/home-cli/files/clang-format b/roles/home-cli/files/clang-format index 089f509..91756d0 100644 --- a/roles/home-cli/files/clang-format +++ b/roles/home-cli/files/clang-format @@ -40,7 +40,6 @@ BreakConstructorInitializersBeforeComma: false BreakInheritanceList: BeforeColon BreakStringLiterals: true ColumnLimit: 100 -CommentPragmas: '^ IWYU pragma:' CompactNamespaces: false ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 4 @@ -115,7 +114,7 @@ SpaceBeforeRangeBasedForLoopColon: true SpaceBeforeSquareBrackets: false SpaceInEmptyBlock: false SpaceInEmptyParentheses: false -SpacesBeforeTrailingComments: 1 +SpacesBeforeTrailingComments: 2 SpacesInAngles: Never SpacesInCStyleCastParentheses: false SpacesInConditionalStatement: false @@ -136,8 +135,4 @@ SpaceBeforeParensOptions: AfterOverloadedOperator: false BeforeNonEmptyParentheses: false -SpacesInLineCommentPrefix: - Maximum: -1 - Minimum: 2 - ...