From 3e9f6eed23a504d21208046c9406aa56a8b4aaca Mon Sep 17 00:00:00 2001 From: Griffin Berlstein Date: Mon, 4 Dec 2023 14:14:02 -0500 Subject: [PATCH] Add back the vscode settings (#1799) * add back the settings json and the rust config * leave a note --- .gitignore | 1 - .vscode/settings.json | 8 ++++++++ 2 files changed, 8 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..f86c86fa69 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + // 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, + }, +}