[clangd] Add abseil-unchecked-statusor-access to list of ignored checks (#181864)

This
[check](https://clang.llvm.org/extra/clang-tidy/checks/abseil/unchecked-statusor-access.html)
also depends on dataflow framework.
This commit is contained in:
Baranov Victor 2026-02-18 21:41:38 +03:00 committed by GitHub
parent 89065b5fe7
commit 157f820011
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -222,7 +222,8 @@ TidyProvider disableUnusableChecks(llvm::ArrayRef<std::string> ExtraBadChecks) {
"-hicpp-invalid-access-moved",
// Check uses dataflow analysis, which might hang/crash unexpectedly on
// incomplete code.
"-bugprone-unchecked-optional-access");
"-bugprone-unchecked-optional-access",
"-abseil-unchecked-statusor-access");
size_t Size = BadChecks.size();
for (const std::string &Str : ExtraBadChecks) {