Fix .vscode config for jj

This commit is contained in:
Tyler Beckman 2024-10-25 21:31:24 -06:00
parent d6ad520ea5
commit 0904b73c12
Signed by: Ty
GPG key ID: 2813440C772555A4

17
.vscode/settings.json vendored
View file

@ -3,5 +3,20 @@
"Merkle",
"Precertificate"
],
"rust-analyzer.rustfmt.extraArgs": ["+nightly"]
"rust-analyzer.rustfmt.extraArgs": ["+nightly"],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.hg/store/**": true,
"**/.jj/**": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.jj": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
}
}