From 023d8c426b49d7fca98a420ef33a494fef71f07e Mon Sep 17 00:00:00 2001 From: Lars Juel Nielsen Date: Tue, 14 Feb 2017 17:57:45 +0100 Subject: [PATCH] Added *.sublime-workspace to gitignore blueprint 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 fe6f8a76b049..8ce873857363 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/*