We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4a182 commit c9d33cdCopy full SHA for c9d33cd
crates/rust-analyzer/src/main_loop.rs
@@ -287,8 +287,10 @@ impl GlobalState {
287
|| self.fetch_build_data_queue.op_requested());
288
289
if became_quiescent {
290
- // Project has loaded properly, kick off initial flycheck
291
- self.flycheck.iter().for_each(FlycheckHandle::restart);
+ if self.config.check_on_save() {
+ // Project has loaded properly, kick off initial flycheck
292
+ self.flycheck.iter().for_each(FlycheckHandle::restart);
293
+ }
294
if self.config.prefill_caches() {
295
self.prime_caches_queue.request_op("became quiescent".to_string());
296
}
0 commit comments