From: Daan De Meyer Date: Wed, 23 Apr 2025 13:26:39 +0000 (+0200) Subject: Add .clangd configuration file that disables the unused include check X-Git-Tag: v258-rc1~752^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98a8117eb95b1d1a8819733062a0f1f78da9a018;p=thirdparty%2Fsystemd.git 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. --- diff --git a/.clangd b/.clangd new file mode 100644 index 00000000000..8cc437ab816 --- /dev/null +++ b/.clangd @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +Diagnostics: + UnusedIncludes: None