From 42865b8975818116b922aa2411eb167618fc532c Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Mon, 19 Sep 2022 08:48:10 -0700 Subject: [PATCH] LibCpp: Add .clang-format to disable clang-format for the LibCpp Tests We don't format these files, as they might have been intentionally formatted differently from the normal serenity style for testing. So ignore them from our global style, so clang-format doesn't pick them up by accident. --- Userland/Libraries/LibCpp/Tests/.clang-format | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Userland/Libraries/LibCpp/Tests/.clang-format diff --git a/Userland/Libraries/LibCpp/Tests/.clang-format b/Userland/Libraries/LibCpp/Tests/.clang-format new file mode 100644 index 00000000000000..48ad0abce45bb9 --- /dev/null +++ b/Userland/Libraries/LibCpp/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