From 015ea60d25a3c773fc9d9bf17fc904de236814f9 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 13 Jun 2023 15:48:53 -0400 Subject: fix(lsp): don't pre-load documents matched in the config file's "exclude" (#19431) This prevents documents specified in a deno.json's "exclude" from being pre-loaded by the lsp. For example, someone may have something like: ```jsonc // deno.json { "exclude": [ "dist" // build directory ] } ``` --- cli/util/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/util/mod.rs') diff --git a/cli/util/mod.rs b/cli/util/mod.rs index 61511679f..0c160dbc8 100644 --- a/cli/util/mod.rs +++ b/cli/util/mod.rs @@ -8,6 +8,7 @@ pub mod display; pub mod draw_thread; pub mod file_watcher; pub mod fs; +pub mod glob; pub mod logger; pub mod path; pub mod progress_bar; -- cgit v1.2.3