Merge pull request #4531 from gitbutlerapp/Use-seperate-folder-for-rust-analzyer

Use seperate folder for rust analzyer
This commit is contained in:
Caleb Owens 2024-07-29 15:27:02 +02:00 committed by GitHub
commit 48fb7c2b75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

3
.gitignore vendored
View File

@ -46,3 +46,6 @@ storybook-static
# Vercel
.vercel
# Rust analyzer
.rust-analyzer/

View File

@ -9,6 +9,9 @@
"rust-analyzer.check.command": "clippy",
"rust-analyzer.check.allTargets": true,
"rust-analyzer.check.features": "all",
"rust-analyzer.check.extraArgs": [
"--target-dir", ".rust-analyzer/target"
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},