vscode

Tags

Follow from the Fediverse

Follow #vscode from Mastodon or any other Fediverse app and its public posts arrive in your timeline. No vutuv account needed.

@vscode@tags.vutuv.de

Your address is used once, to send you to your own server's follow dialog. It is never stored here.

The most endorsed users with this tag

Posts with this tag

1 post

Filters
Andreu Casablanca 🐀 @castarco hachyderm.io

I feel a bit dumb for having discovered that so late, but #VSCode / #VSCodium do not use the .gitignore file to decide what inodes to watch for changes…

Working on a big #Rustlang project can be a nightmare (burning CPU, eating up all the RAM…), given that the target/ directory can end up using more than 100gb of disk space.

Remember to set your “files.watcherExclude” setting to avoid that problem:

{
    "search.useIgnoreFiles": true,
    "search.useGlobalIgnoreFiles": true,
    "files.watcherExclude": {
        "target/**": true,
        "**/target/**": true
    }
}