Skip to content

Commit

Permalink
meta: whitelist dotfiles in .gitignore
Browse files Browse the repository at this point in the history
Instead of excluding IDE-specific dotfiles, exclude all and
then whitelist those the project needs to track.

Fixes: #8012
  • Loading branch information
claudiorodriguez committed Aug 9, 2016
1 parent f59b888 commit 7dc9f9a
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Whitelist dotfiles
.*
!deps/**/.*
!test/fixtures/**/.*
!tools/eslint/**/.*
!tools/doc/node_modules/**/.*
!.editorconfig
!.eslintignore
!.eslintrc
!.gitattributes
!.github
!.gitignore
!.gitkeep
!.mailmap
!.remarkrc

core
vgcore.*
v8*.log
Expand All @@ -16,8 +32,6 @@ node
node_g
*.swp
.benchmark_reports
/.project
/.cproject
icu_config.gypi

/out
Expand Down

0 comments on commit 7dc9f9a

Please sign in to comment.