Skip to content

Commit

Permalink
fix(gitignore): No longer ignore VSCode settings (#3477)
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-haydon authored and hansl committed Dec 8, 2016
1 parent 183d301 commit 8d88446
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/angular-cli/blueprints/ng2/files/gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,19 @@

# IDEs and editors
/.idea
/.vscode
.project
.classpath
.c9/
*.launch
.settings/

# IDE - VSCode
.vscode/*

This comment has been minimized.

Copy link
@mgol

mgol Dec 8, 2016

Member

This should all begin with a /, shouldn't it? Otherwise files of this name will be ignored everywhere, not just on the project root level. And it did begin with / previously as currently the /.idea entry does.

!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
Expand Down

0 comments on commit 8d88446

Please sign in to comment.