忽略VS Code中的文件或文件夹

时间:2017-07-23 17:03:48

标签: visual-studio visual-studio-code

我有一个{}目录,里面有一些已编译的JS,我发现自己不小心在那里编辑文件,而不是我要编辑的项目其余部分,因为/builds会调出2个文件,我只是快速选择第一个。

如何在VS Code中忽略特定项目中的文件或目录?谢谢!

2 个答案:

答案 0 :(得分:1)

settings.json

"search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/builds": true
}

答案 1 :(得分:0)

我的推荐:

在您的应用程序的根目录中创建一个名为 myProject.code-workspace 的文件并像这样编辑它:

{
  "folders": [
    {
      "path": "."
    }
  ],
  "settings": {
    "search.exclude": {
      "**/node_modules": true,
    },
    "files.exclude": {
      "**/android": true,
      "**/ios": true,
    },
    "editor.formatOnSave": true, // not needed
  }
}

这样,您的项目将忽略“探索”选项卡中的文件。如果您只想为搜索环境排除文件,请将其添加到 search.exclude,否则添加到 files.exclude 规则中的 settings。您可以根据需要添加/编辑。

VSCode 将检测该文件并将其视为工作区配置的 JSON。不要忘记通过转到 file > open workspace 并选择此文件在 VSCode 中打开此工作区。

更多信息:https://code.visualstudio.com/docs/getstarted/settings