diff options
author | 2022-07-06 08:34:01 +0430 | |
---|---|---|
committer | 2022-07-06 04:11:31 -0700 | |
commit | 4654de7ee544b1ad43e6bf1a8134b20b9bda03cc (patch) | |
tree | 52bd49c7092382750f90635c049e46b7433f21e7 | |
parent | b59908d291ac5da8b104ea2e74be4757ab1e8a6d (diff) | |
download | bun-4654de7ee544b1ad43e6bf1a8134b20b9bda03cc.tar.gz bun-4654de7ee544b1ad43e6bf1a8134b20b9bda03cc.tar.zst bun-4654de7ee544b1ad43e6bf1a8134b20b9bda03cc.zip |
adding a template .gitignore
Diffstat (limited to '')
-rw-r--r-- | examples/discord-interactions/.gitignore | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/examples/discord-interactions/.gitignore b/examples/discord-interactions/.gitignore new file mode 100644 index 000000000..1c22d540a --- /dev/null +++ b/examples/discord-interactions/.gitignore @@ -0,0 +1,88 @@ +/data + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +#config file +config.json + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# TernJS port file +.tern-port + +# pm2 +.pm2 +.pm2.bak |