From 05e72a33331bd9ad96ebbe4c844b94f0a5fb7390 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Tue, 3 Dec 2019 22:22:23 +0100 Subject: [PATCH] .clang-format - do not sort include files. It is C++, not Java, the order of includes is often important. --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index 725e4c67e02..5fc6ab23622 100644 --- a/.clang-format +++ b/.clang-format @@ -90,6 +90,7 @@ PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Right ReflowComments: true +SortIncludes: false SortUsingDeclarations: true SpaceAfterCStyleCast: true SpaceAfterLogicalNot: false