-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
101 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
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
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Node.js modules | ||
node_modules/* | ||
|
||
# Compiled Python files | ||
*.pyc | ||
|
||
# Folder view configuration files | ||
.DS_Store | ||
Desktop.ini | ||
|
||
# Thumbnail cache files | ||
._* | ||
Thumbs.db | ||
|
||
# Files that might appear on external disks | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Exclude the Podspecs | ||
Pods/* | ||
# Podfile.lock should not be ignored. | ||
# See also https://github.com/thoughtbot/liftoff/issues/30 | ||
# Podfile.lock | ||
|
||
# Exclude any PSD/AI source | ||
#*.psd | ||
#*.ai | ||
|
||
# Exclude generated files | ||
VersionX-revision.h | ||
|
||
# Exclude the build products | ||
build/* | ||
build.output | ||
pkg/* | ||
*.o | ||
|
||
# Exclude temp nibs and swap files | ||
*~.nib | ||
*.swp | ||
*~ | ||
|
||
# Sparkle distribution Private Key (Don't check me in!) | ||
dsa_priv.pem | ||
|
||
# Exclude user-specific XCode 3 and 4 files | ||
*.mode1 | ||
*.mode1v3 | ||
*.mode2v3 | ||
*.perspective | ||
*.perspectivev3 | ||
*.pbxuser | ||
*.xcuserdatad | ||
*.xccheckout | ||
xcuserdata | ||
profile | ||
DerivedData | ||
|
||
# Exclude ReleaseNotes | ||
RELEASENOTES | ||
RELEASENOTES.* | ||
release_notes | ||
release_notes.* | ||
|
||
# Other source repository archive directories (protects when importing) | ||
.hg | ||
.svn | ||
CVS | ||
|
||
# idea project files | ||
.idea | ||
*.hmap | ||
|
||
# twistd pid files | ||
twistd.pid | ||
|
||
# Rails | ||
# Ignore bundler config. | ||
.bundle | ||
|
||
# Ignore the default SQLite database. | ||
db/*.sqlite3 | ||
db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and templates. | ||
log/*.log | ||
tmp | ||
|
||
# Ignore vendor cache | ||
vendor/cache |
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