You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.
Fixed [#7371](https://github.com/biomejs/biome/issues/7371) where the Biome Language Server didn't correctly recompute the diagnostics when updating a nested configuration file.
error!("Configuration could not be loaded for {path}");
33
+
34
+
let status = session.configuration_status();
35
+
36
+
let project_key = if status.is_loaded(){
37
+
match session.project_for_path(&path){
38
+
Some(project_key) => project_key,
39
+
None => {
40
+
error!("Could not find project for {path}");
57
41
returnOk(());
58
42
}
59
43
}
44
+
}else{
45
+
if status.is_plugin_error(){
46
+
session.client.show_message(MessageType::WARNING,"The plugin loading has failed. Biome will report only parsing errors until the file is fixed or its usage is disabled.").await;
47
+
}
48
+
error!("Configuration could not be loaded for {path}");
0 commit comments