vscode隐藏.meta
vscode隐藏.meta
File -> Preferences -> Setting,然后设置:
Exclude加入
**/*.meta
User和Workspace都改一下,这样就对其他项目都有效啦。
文件-->首选项-->工作区设置
增加如下配置:
{
"git.confirmSync": false,
"git.enableSmartCommit": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"build/": true,
"temp/": true,
"library/": true,
"**/*.anim": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.meta": true,
"library/": true,
"local/": true,
"temp/": true
}
}