Make RustAnalyzer check off by default

This commit is contained in:
Matthew Esposito 2023-06-04 18:06:34 -04:00
parent dc25fbe984
commit 1835d0333b
No known key found for this signature in database

View File

@ -347,7 +347,7 @@ pub struct RustAnalyzer {
impl Step for RustAnalyzer {
type Output = ();
const ONLY_HOSTS: bool = true;
const DEFAULT: bool = true;
const DEFAULT: bool = false;
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
run.path("src/tools/rust-analyzer")