|
| 1 | +# Created by https://www.gitignore.io/api/node,macos,linux,windows |
| 2 | + |
| 3 | +### Linux ### |
| 4 | +*~ |
| 5 | + |
| 6 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 7 | +.fuse_hidden* |
| 8 | + |
| 9 | +# KDE directory preferences |
| 10 | +.directory |
| 11 | + |
| 12 | +# Linux trash folder which might appear on any partition or disk |
| 13 | +.Trash-* |
| 14 | + |
| 15 | +# .nfs files are created when an open file is removed but is still being accessed |
| 16 | +.nfs* |
| 17 | + |
| 18 | +### macOS ### |
| 19 | +*.DS_Store |
| 20 | +.AppleDouble |
| 21 | +.LSOverride |
| 22 | + |
| 23 | +# Icon must end with two \r |
| 24 | +Icon |
| 25 | + |
| 26 | +# Thumbnails |
| 27 | +._* |
| 28 | + |
| 29 | +# Files that might appear in the root of a volume |
| 30 | +.DocumentRevisions-V100 |
| 31 | +.fseventsd |
| 32 | +.Spotlight-V100 |
| 33 | +.TemporaryItems |
| 34 | +.Trashes |
| 35 | +.VolumeIcon.icns |
| 36 | +.com.apple.timemachine.donotpresent |
| 37 | + |
| 38 | +# Directories potentially created on remote AFP share |
| 39 | +.AppleDB |
| 40 | +.AppleDesktop |
| 41 | +Network Trash Folder |
| 42 | +Temporary Items |
| 43 | +.apdisk |
| 44 | + |
| 45 | +### Node ### |
| 46 | +# Logs |
| 47 | +logs |
| 48 | +*.log |
| 49 | +npm-debug.log* |
| 50 | +yarn-debug.log* |
| 51 | +yarn-error.log* |
| 52 | + |
| 53 | +# Runtime data |
| 54 | +pids |
| 55 | +*.pid |
| 56 | +*.seed |
| 57 | +*.pid.lock |
| 58 | + |
| 59 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 60 | +lib-cov |
| 61 | + |
| 62 | +# Coverage directory used by tools like istanbul |
| 63 | +coverage |
| 64 | + |
| 65 | +# nyc test coverage |
| 66 | +.nyc_output |
| 67 | + |
| 68 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
| 69 | +.grunt |
| 70 | + |
| 71 | +# Bower dependency directory (https://bower.io/) |
| 72 | +bower_components |
| 73 | + |
| 74 | +# node-waf configuration |
| 75 | +.lock-wscript |
| 76 | + |
| 77 | +# Compiled binary addons (http://nodejs.org/api/addons.html) |
| 78 | +build/Release |
| 79 | + |
| 80 | +# Dependency directories |
| 81 | +node_modules/ |
| 82 | +jspm_packages/ |
| 83 | + |
| 84 | +# Typescript v1 declaration files |
| 85 | +typings/ |
| 86 | + |
| 87 | +# Optional npm cache directory |
| 88 | +.npm |
| 89 | + |
| 90 | +# Optional eslint cache |
| 91 | +.eslintcache |
| 92 | + |
| 93 | +# Optional REPL history |
| 94 | +.node_repl_history |
| 95 | + |
| 96 | +# Output of 'npm pack' |
| 97 | +*.tgz |
| 98 | + |
| 99 | +# Yarn Integrity file |
| 100 | +.yarn-integrity |
| 101 | + |
| 102 | +# dotenv environment variables file |
| 103 | +.env |
| 104 | + |
| 105 | + |
| 106 | +### Windows ### |
| 107 | +# Windows thumbnail cache files |
| 108 | +Thumbs.db |
| 109 | +ehthumbs.db |
| 110 | +ehthumbs_vista.db |
| 111 | + |
| 112 | +# Folder config file |
| 113 | +Desktop.ini |
| 114 | + |
| 115 | +# Recycle Bin used on file shares |
| 116 | +$RECYCLE.BIN/ |
| 117 | + |
| 118 | +# Windows Installer files |
| 119 | +*.cab |
| 120 | +*.msi |
| 121 | +*.msm |
| 122 | +*.msp |
| 123 | + |
| 124 | +# Windows shortcuts |
| 125 | +*.lnk |
| 126 | + |
| 127 | +# End of https://www.gitignore.io/api/node,macos,linux,windows |
| 128 | + |
| 129 | +# Transpiled build artifacts |
| 130 | +lib/ |
| 131 | + |
| 132 | +# Vagrant development environment |
| 133 | +.vagrant/ |
| 134 | +Vagrantfile |
| 135 | +puphpet/ |
0 commit comments