Skip to content

Commit 46665bd

Browse files
committed
fix(langage_server): fix initialize nested configs (#10698)
1 parent 06f796f commit 46665bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/oxc_language_server/src/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl WorkspaceWorker {
7979
options: &Options,
8080
) -> ConcurrentHashMap<PathBuf, ConfigStore> {
8181
// nested config is disabled, no need to search for configs
82-
if options.use_nested_configs() {
82+
if !options.use_nested_configs() {
8383
return ConcurrentHashMap::default();
8484
}
8585

0 commit comments

Comments
 (0)