From 925cf074f4c8307527c9414467b72698cbc968af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 17 Feb 2021 09:58:06 +0100 Subject: [PATCH] Update clang-format config --- .clang-format | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.clang-format b/.clang-format index e773c981..7fff0a35 100644 --- a/.clang-format +++ b/.clang-format @@ -1,4 +1,6 @@ +--- Language: Cpp +Standard: Cpp11 BasedOnStyle: Chromium AccessModifierOffset: -4 @@ -33,6 +35,7 @@ IncludeCategories: Priority: 99 - Regex: '.*' Priority: 4 +IncludeIsMainRegex: '(Test)?$' IndentCaseLabels: false IndentPPDirectives: BeforeHash IndentWidth: 4 @@ -40,3 +43,4 @@ MaxEmptyLinesToKeep: 2 PenaltyBreakAssignment: 1 PenaltyBreakComment: 50 TabWidth: 4 +...