From 0b46de9fd139ddb46ab5d57d404f3e853d19b340 Mon Sep 17 00:00:00 2001 From: Griffin Berlstein Date: Mon, 4 Dec 2023 13:58:42 -0500 Subject: [PATCH 1/2] add back the settings json and the rust config --- .gitignore | 1 - .vscode/settings.json | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 750d98b8d8..8a97d3c2f7 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,5 @@ __pycache__ tests/xilinx/cocotb/**/hdl -.vscode/settings.json !cider-dap/calyxDebug/package.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..50c92d985e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "[rust]": { + "editor.defaultFormatter": "rust-lang.rust-analyzer", + "editor.formatOnSave": true, + }, +} From e5e2de01ea4c5f19241519b2c3820bed34e5a806 Mon Sep 17 00:00:00 2001 From: Griffin Berlstein Date: Mon, 4 Dec 2023 14:01:10 -0500 Subject: [PATCH 2/2] leave a note --- .vscode/settings.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 50c92d985e..f86c86fa69 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,6 @@ { + // Please only make changes to this file if they are useful/necessary for + // the whole project. For all other things use your own local settings. "[rust]": { "editor.defaultFormatter": "rust-lang.rust-analyzer", "editor.formatOnSave": true,