2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

.vscodeディレクトリは何の役割があるの?

Last updated at Posted at 2020-12-01

はじめに

スクリーンショット 2020-12-01 16.30.19.png
プロジェクトによってあったりなかったりする 「.vscode」フォルダ。。。

なぜプロジェクトAでは存在するのにプロジェクトBでは存在しない?と思ったので、調べて検証してみました!

Workspaceから設定ファイルを開いたら作成された!!!

スクリーンショット 2020-12-01 16.29.24.png
Preferences>Settings>Workspaceから設定ファイル(右上のファイルアイコン)を開くと、作成されてた!!

で、肝心のUserとWorkspaceの違いは何?という話

Workspaceの設定について

Settingsには「User Settings」と「Workspace Settings」の2つがあります。
Workspace Settingsは個別のワークスペースやプロジェクトごとの設定を行うもので、User Settingsよりもこちらが優先されます。
https://blanche-toile.com/web/settings-visual-studio-code

ふむふむ。
・プロジェクトごとの設定がWorkspace
・VSCodeそのものの設定がUser

こんな感じかな?

プロジェクトごとに設定を変えたいならWorkspaceのSettingsを編集しましょう。

「WorkspaceのSettings」とは、つまりmyProject/.vscode/settings.jsonと言うことである!!:relieved:

いやー、スッキリした

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?