From 8be0bf6f8ff86cfed5f4c47e3ec78b11c196ceeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=A9=EC=84=B1=EB=B2=94=20=28Bang=20Seongbeom=29?= Date: Sat, 18 Sep 2021 17:12:32 +0900 Subject: [PATCH] Make not to ignore *.code-workspace **Reasons for making this change:** Workspace file can allow you to have an individual VS Code setting file for each project, which is useful for monorepo-based development. You can find an example on [lit/lit/lit-next.code-workspace](https://github.com/lit/lit/blob/08f60328abf83113fe82c9d8ee43dc71f10a9b77/lit-next.code-workspace). **Links to documentation supporting these rule changes:** https://code.visualstudio.com/docs/editor/multi-root-workspaces#_workspace-file --- Global/VisualStudioCode.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 85813e1c..de105989 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -3,7 +3,6 @@ !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json -*.code-workspace # Local History for Visual Studio Code .history/ -- GitLab