chore: add vscode settings

Adds rust-analyzer settings to use clippy and enable all features. Enables github copilot for rust, toml, and markdown files.
This commit is contained in:
Martin Wimpress
2025-05-23 13:03:11 +01:00
committed by Martin Wimpress
parent 619160c9d9
commit d7a8a10e35
+10
View File
@@ -0,0 +1,10 @@
{
"rust-analyzer.check.command": "clippy",
"rust-analyzer.cargo.features": "all",
"github.copilot.enable": {
"*": true,
"rust": true,
"toml": true,
"markdown": true
}
}