From 98a8117eb95b1d1a8819733062a0f1f78da9a018 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Wed, 23 Apr 2025 15:26:39 +0200 Subject: [PATCH] Add .clangd configuration file that disables the unused include check The clangd include checker is rather broken and is littered with false positives in our codebase, so let's disable the feature until it improves a bit. --- .clangd | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .clangd diff --git a/.clangd b/.clangd new file mode 100644 index 0000000000..8cc437ab81 --- /dev/null +++ b/.clangd @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +Diagnostics: + UnusedIncludes: None