From 93861bb7ce90990a4e0e40b15760a9e763b989bb Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Wed, 13 May 2026 11:10:58 +0200 Subject: [PATCH] attempt to fix ra --- .zed/settings.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..da94325 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,17 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "linkedProjects": [ + "device-state/Cargo.toml", + "esp32/Cargo.toml", + "pico/Cargo.toml", + "simulator/Cargo.toml" + ], + "check": { + "workspace": false + } + } + } + } +}