From f8b5c9404751b47425463238b773033e442fdb21 Mon Sep 17 00:00:00 2001 From: Lars Juel Nielsen Date: Wed, 15 Feb 2017 19:09:17 +0100 Subject: [PATCH] feat(@angular/cli): added *.sublime-workspace to gitignore blueprint (#4698) According to https://www.sublimetext.com/docs/3/projects.html : "Projects in Sublime Text are made up of two files: the .sublime-project file, which contains the project definition, and the .sublime-workspace file, which contains user specific data, such as the open files and the modifications to each. As a general rule, the .sublime-project file would be checked into version control, while the .sublime-workspace file would not." --- packages/@angular/cli/blueprints/ng2/files/gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/@angular/cli/blueprints/ng2/files/gitignore b/packages/@angular/cli/blueprints/ng2/files/gitignore index fe6f8a76b0..8ce8738573 100755 --- a/packages/@angular/cli/blueprints/ng2/files/gitignore +++ b/packages/@angular/cli/blueprints/ng2/files/gitignore @@ -14,6 +14,7 @@ .c9/ *.launch .settings/ +*.sublime-workspace # IDE - VSCode .vscode/*