diff options
| -rw-r--r-- | .vscode/settings.json | 4 | ||||
| -rw-r--r-- | .zed/settings.json | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..226921e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "rust-analyzer.check.command": "clippy", + "rust-analyzer.checkOnSave": true +} diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..067be5a --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,10 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "checkOnSave": true, + "check": { "command": "clippy" }, + }, + }, + }, +} |
