add cargo's git checkouts to the list of paths to mark as read-only in vscode

This commit is contained in:
Jacob Lifshay 2025-02-13 18:45:31 -08:00
parent 1951cf5aaa
commit bad69a3d04
No known key found for this signature in database

View file

@ -5,6 +5,7 @@ Add the following to settings.json to mark Rust library sources as read-only:
```json
"files.readonlyInclude": {
"**/.cargo/registry/src/**/*.rs": true,
"**/.cargo/git/checkouts/**/*.rs": true,
"**/lib/rustlib/src/rust/library/**/*.rs": true,
},
```