Merge pull request #19156 from programmerjake/patch-1

add cargo's git checkouts to the list of paths to mark as read-only in vscode
This commit is contained in:
Lukas Wirth 2025-02-14 05:59:17 +00:00 committed by GitHub
commit 40e4f9130f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,
},
```