We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unused_mut
hooks
1 parent 0847063 commit 5dbcd4eCopy full SHA for 5dbcd4e
2 files changed
crates/tinymist/src/project.rs
@@ -189,6 +189,7 @@ impl ServerState {
189
stats: Arc::default(),
190
});
191
192
+ #[allow(unused_mut)]
193
let mut hooks: Vec<Box<dyn CompileHook + Send + Sync>> = vec![
194
Box::new(DiagHook::new(analysis.clone(), editor_tx.clone())),
195
Box::new(LintHook::new(analysis.clone(), editor_tx.clone())),
crates/tinymist/src/tool/project.rs
@@ -84,6 +84,7 @@ where
84
let export_task =
85
crate::task::ExportTask::new(handle, Some(editor_tx.clone()), opts.config.export());
86
87
88
89
90
0 commit comments