0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[vscode] フォルダ・ファイルを監視対象外にする。エクスプロラーの表示するフォルダ・ファイルを変更

Posted at

はじめに

エクスプローラーに表示したくないファイルやフォルダ、監視対象外にしたいフォルダあるともいます。
特に監視対象から外すと動作の軽量化につながるかと思います。

やり方

	// エスクプローラーで非表示にするファイル,フォルダ
	"files.exclude": {
		"**/.git": true,
		"**/.svn": true,
		"**/.hg": true,
		"**/CVS": true,
		"**/.DS_Store": true,
		//"**/.ipynb_checkpoints":true,
		//"**/__pycache__":true,
	},


	// 監視対象から除外
	"files.watcherExclude": {
        "**/.git/objects/**": true,
        "**/.git/subtree-cache/**": true,
        "**/node_modules/*/**": true,
	    //"**/images/**":true,
	    //"**/.ipynb_checkpoints/**":true
  },
0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?