Files
nearle_pos/.clangd
Suriya 09edce5dc6 Silence clangd on the generated Linux runner
`linux/runner/` is Flutter's stock GTK host program. On macOS the GTK
development headers are absent, so clangd cannot resolve <gtk/gtk.h>,
G_DECLARE_FINAL_TYPE never expands, and a six-line main.cc reports seven
errors for symbols that macro produces.

They are editor diagnostics, not build errors — the file compiles
unchanged on Linux, and nothing in the Flutter toolchain reads clangd.
Suppressing them beats editing generated code the Linux build needs.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-03 11:39:56 +05:30

28 lines
1.2 KiB
YAML

# clangd configuration.
#
# `linux/runner/` is the GTK host program Flutter generates for the Linux
# desktop target. It is stock scaffolding — unmodified since `flutter create` —
# and it builds correctly on a Linux machine with the GTK development headers
# installed.
#
# On macOS and Windows those headers do not exist, so clangd cannot resolve
# `#include <gtk/gtk.h>`. Everything downstream then collapses: `MyApplication`,
# `my_application_new` and `g_autoptr` are all produced by the
# `G_DECLARE_FINAL_TYPE` macro, which never expands, so the editor reports a
# handful of undeclared identifiers and an unused include on a six-line file
# that has nothing wrong with it.
#
# Those are editor diagnostics, not build errors. `flutter build linux` on a
# Linux box compiles this unchanged; nothing in the Flutter toolchain reads
# clangd. Suppressing them here keeps the noise out of the problems panel
# without touching generated code that the Linux build depends on.
#
# If you do want real analysis of this directory, do it on Linux with the GTK
# headers present and a compile_commands.json — not by editing the runner.
If:
PathMatch: linux/.*
Diagnostics:
Suppress: '*'
UnusedIncludes: None