Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/client.ts')
-rw-r--r--editors/code/src/client.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts
index 1cbf247297..372dc8bedf 100644
--- a/editors/code/src/client.ts
+++ b/editors/code/src/client.ts
@@ -131,7 +131,10 @@ export async function createClient(
? diag.code
: diag.code?.value;
if (
- value === "unlinked-file" &&
+ // FIXME: We currently emit this diagnostic way too early, before we have
+ // loaded the project fully
+ // value === "unlinked-file" &&
+ value === "temporary-disabled" &&
!unlinkedFiles.includes(uri) &&
diag.message !== "file not included in module tree"
) {