1
You have to add these files in the delete list. That’s up to a default functionality of VS Code, just follow these steps.
Note the image above that by default VS CODE already handles these extensions
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
But in your case to delete from the listing those files that start with ._
you must do so:
"files.exclude": {
"**/._*": true
}
Shoow, thanks man, I was already getting loco with this kkk mess
– Junior Rocha
@Nice juniorrocha you solved there, thank goodness we have these options to configure rss. Good luck there, Abs
– hugocsl