forked from balderdashy/sails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated gitignore (cleaned it up, plus now it ignores generated test …
…files if they're laying around)
- Loading branch information
1 parent
79beba3
commit 34b266d
Showing
1 changed file
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
*# | ||
############################ | ||
# npm | ||
############################ | ||
node_modules | ||
npm-debug.log | ||
ssl | ||
.DS_STORE | ||
*~ | ||
.idea | ||
|
||
nbproject | ||
|
||
# Ignore temporary files | ||
############################ | ||
# tmp, editor & OS files | ||
############################ | ||
.tmp | ||
|
||
*.swo | ||
*.swp | ||
*.swn | ||
*.swm | ||
*.swm | ||
.DS_STORE | ||
*# | ||
*~ | ||
.idea | ||
nbproject | ||
|
||
|
||
############################ | ||
# Tests | ||
############################ | ||
testApp |