ct-rs/.vscode/settings.json

24 lines
598 B
JSON
Raw Normal View History

2024-10-25 17:26:55 -06:00
{
"cSpell.words": [
"Merkle",
"Precertificate"
],
2024-10-25 21:31:24 -06:00
"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
},
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.features": "all"
2024-10-25 17:26:55 -06:00
}