Skip to content

Commit

Permalink
Disable proc macro support by default
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Kaput <[email protected]>
  • Loading branch information
piotmag769 authored and mkaput committed Nov 28, 2024
1 parent aa1d549 commit 9fbb7d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cairo-lang-language-server/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl Config {
state.config.trace_macro_diagnostics =
response.pop_front().as_ref().and_then(Value::as_bool).unwrap_or_default();
state.config.enable_proc_macros =
response.pop_front().as_ref().and_then(Value::as_bool).unwrap_or(true);
response.pop_front().as_ref().and_then(Value::as_bool).unwrap_or(false);

debug!("reloaded configuration: {:#?}", state.config);

Expand Down

0 comments on commit 9fbb7d4

Please sign in to comment.