|
| 1 | +# Created by https://www.gitignore.io/api/node,macos,visualstudiocode |
| 2 | +# Edit at https://www.gitignore.io/?templates=node,macos,visualstudiocode |
| 3 | + |
| 4 | +### macOS ### |
| 5 | +# General |
| 6 | +.DS_Store |
| 7 | +.AppleDouble |
| 8 | +.LSOverride |
| 9 | + |
| 10 | +# Icon must end with two \r |
| 11 | +Icon |
| 12 | + |
| 13 | +# Thumbnails |
| 14 | +._* |
| 15 | + |
| 16 | +# Files that might appear in the root of a volume |
| 17 | +.DocumentRevisions-V100 |
| 18 | +.fseventsd |
| 19 | +.Spotlight-V100 |
| 20 | +.TemporaryItems |
| 21 | +.Trashes |
| 22 | +.VolumeIcon.icns |
| 23 | +.com.apple.timemachine.donotpresent |
| 24 | + |
| 25 | +# Directories potentially created on remote AFP share |
| 26 | +.AppleDB |
| 27 | +.AppleDesktop |
| 28 | +Network Trash Folder |
| 29 | +Temporary Items |
| 30 | +.apdisk |
| 31 | + |
| 32 | +### Node ### |
| 33 | +# Logs |
| 34 | +logs |
| 35 | +*.log |
| 36 | +npm-debug.log* |
| 37 | +yarn-debug.log* |
| 38 | +yarn-error.log* |
| 39 | +lerna-debug.log* |
| 40 | + |
| 41 | +pids |
| 42 | +*.pid |
| 43 | +*.seed |
| 44 | +*.pid.lock |
| 45 | + |
| 46 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 47 | +lib-cov |
| 48 | + |
| 49 | +# Coverage directory used by tools like istanbul |
| 50 | +coverage |
| 51 | +*.lcov |
| 52 | + |
| 53 | +# nyc test coverage |
| 54 | +.nyc_output |
| 55 | + |
| 56 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 57 | +.grunt |
| 58 | + |
| 59 | +# Bower dependency directory (https://bower.io/) |
| 60 | +bower_components |
| 61 | + |
| 62 | +# node-waf configuration |
| 63 | +.lock-wscript |
| 64 | + |
| 65 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 66 | +build/Release |
| 67 | + |
| 68 | +# Dependency directories |
| 69 | +node_modules/ |
| 70 | +jspm_packages/ |
| 71 | + |
| 72 | +# TypeScript v1 declaration files |
| 73 | +typings/ |
| 74 | + |
| 75 | +# TypeScript cache |
| 76 | +*.tsbuildinfo |
| 77 | + |
| 78 | +# Optional npm cache directory |
| 79 | +.npm |
| 80 | + |
| 81 | +# Optional eslint cache |
| 82 | +.eslintcache |
| 83 | + |
| 84 | +# Optional REPL history |
| 85 | +.node_repl_history |
| 86 | + |
| 87 | +# Output of 'npm pack' |
| 88 | +*.tgz |
| 89 | + |
| 90 | +# Yarn Integrity file |
| 91 | +.yarn-integrity |
| 92 | + |
| 93 | +# dotenv environment variables file |
| 94 | +.env |
| 95 | +.env.test |
| 96 | + |
| 97 | +# parcel-bundler cache (https://parceljs.org/) |
| 98 | +.cache |
| 99 | + |
| 100 | +# next.js build output |
| 101 | +.next |
| 102 | + |
| 103 | +# nuxt.js build output |
| 104 | +.nuxt |
| 105 | + |
| 106 | +# rollup.js default build output |
| 107 | +dist/ |
| 108 | + |
| 109 | +# Uncomment the public line if your project uses Gatsby |
| 110 | +# https://nextjs.org/blog/next-9-1#public-directory-support |
| 111 | +# https://create-react-app.dev/docs/using-the-public-folder/#docsNav |
| 112 | +# public |
| 113 | + |
| 114 | +# Storybook build outputs |
| 115 | +.out |
| 116 | +.storybook-out |
| 117 | + |
| 118 | +# vuepress build output |
| 119 | +.vuepress/dist |
| 120 | + |
| 121 | +# Serverless directories |
| 122 | +.serverless/ |
| 123 | + |
| 124 | +# FuseBox cache |
| 125 | +.fusebox/ |
| 126 | + |
| 127 | +# DynamoDB Local files |
| 128 | +.dynamodb/ |
| 129 | + |
| 130 | +# Temporary folders |
| 131 | +tmp/ |
| 132 | +temp/ |
| 133 | + |
| 134 | +### VisualStudioCode ### |
| 135 | +.vscode/* |
| 136 | +!.vscode/settings.json |
| 137 | +!.vscode/tasks.json |
| 138 | +!.vscode/launch.json |
| 139 | +!.vscode/extensions.json |
| 140 | + |
| 141 | +### VisualStudioCode Patch ### |
| 142 | +# Ignore all local history of files |
| 143 | +.history |
| 144 | + |
| 145 | +# End of https://www.gitignore.io/api/node,macos,visualstudiocode |
0 commit comments