From 0d63b7a51552ac85480963d498770d65229b0d13 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 3 Dec 2022 21:25:10 +0000 Subject: [PATCH] LibCodeComprehension: Add .clang-format to disable formatting for tests Same as 42865b8975818116b922aa2411eb167618fc532c. --- .../Libraries/LibCodeComprehension/Cpp/Tests/.clang-format | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Userland/Libraries/LibCodeComprehension/Cpp/Tests/.clang-format diff --git a/Userland/Libraries/LibCodeComprehension/Cpp/Tests/.clang-format b/Userland/Libraries/LibCodeComprehension/Cpp/Tests/.clang-format new file mode 100644 index 00000000000..48ad0abce45 --- /dev/null +++ b/Userland/Libraries/LibCodeComprehension/Cpp/Tests/.clang-format @@ -0,0 +1,4 @@ +# These are all test files, don't format them, as they maybe +# intentionally miss-formatted. +DisableFormat: true +SortIncludes: Never