打开工程的setting.json文件,在files.exclude这个参数(如果没有就添加上去)下增加 "**/*.meta":true 这个忽略项目:

VS Code 隐藏  .meta 文件

 

 

{
    "git.ignoreLimitWarning": true,
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/*.meta": true
    }
}

 

相关文章:

  • 2021-08-20
  • 2021-11-26
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2021-05-30
  • 2022-12-23
  • 2021-11-19
  • 2021-11-19
相关资源
相似解决方案