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 [#7411](https://github.com/biomejs/biome/issues/7411). The Biome Language Server had a regression where opening an editor with a file already open wouldn't load the project settings correctly.
error!("Configuration could not be loaded for {path}");
35
96
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}");
41
97
returnOk(());
42
98
}
43
99
}
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