|
| 1 | +# Parts of this file were adapted from |
| 2 | +# GitHub’s collection of .gitignore file templates |
| 3 | +# which are Copyright (c) 2023 GitHub, Inc. |
| 4 | +# and released under the MIT License. |
| 5 | +# For more details, visit the project page: |
| 6 | +# https://github.com/github/gitignore |
| 7 | + |
| 8 | +# Build directories |
| 9 | +package |
| 10 | + |
| 11 | +# Environment versions file |
| 12 | +.versions |
| 13 | + |
| 14 | +# Tern |
| 15 | +.tern-project |
| 16 | +.tern-port |
| 17 | + |
| 18 | +# npm config |
| 19 | +.npmrc |
| 20 | + |
| 21 | +# Temporary development files |
| 22 | +tmp |
| 23 | + |
| 24 | +# Yarn lockfile (only package-lock.json supported) |
| 25 | +yarn.lock |
| 26 | + |
| 27 | +# Logs |
| 28 | +logs |
| 29 | +*.log |
| 30 | +npm-debug.log* |
| 31 | +yarn-debug.log* |
| 32 | +yarn-error.log* |
| 33 | +lerna-debug.log* |
| 34 | +.pnpm-debug.log* |
| 35 | + |
| 36 | +# Diagnostic reports (https://nodejs.org/api/report.html) |
| 37 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 38 | + |
| 39 | +# Runtime data |
| 40 | +pids |
| 41 | +*.pid |
| 42 | +*.seed |
| 43 | +*.pid.lock |
| 44 | + |
| 45 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 46 | +lib-cov |
| 47 | + |
| 48 | +# Coverage directory used by tools like istanbul |
| 49 | +coverage |
| 50 | +*.lcov |
| 51 | + |
| 52 | +# nyc test coverage |
| 53 | +.nyc_output |
| 54 | + |
| 55 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 56 | +.grunt |
| 57 | + |
| 58 | +# Bower dependency directory (https://bower.io/) |
| 59 | +bower_components |
| 60 | + |
| 61 | +# node-waf configuration |
| 62 | +.lock-wscript |
| 63 | + |
| 64 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 65 | +build/Release |
| 66 | + |
| 67 | +# Dependency directories |
| 68 | +node_modules/ |
| 69 | +jspm_packages/ |
| 70 | + |
| 71 | +# Snowpack dependency directory (https://snowpack.dev/) |
| 72 | +web_modules/ |
| 73 | + |
| 74 | +# TypeScript cache |
| 75 | +*.tsbuildinfo |
| 76 | + |
| 77 | +# Optional npm cache directory |
| 78 | +.npm |
| 79 | + |
| 80 | +# Optional eslint cache |
| 81 | +.eslintcache |
| 82 | + |
| 83 | +# Optional stylelint cache |
| 84 | +.stylelintcache |
| 85 | + |
| 86 | +# Microbundle cache |
| 87 | +.rpt2_cache/ |
| 88 | +.rts2_cache_cjs/ |
| 89 | +.rts2_cache_es/ |
| 90 | +.rts2_cache_umd/ |
| 91 | + |
| 92 | +# Optional REPL history |
| 93 | +.node_repl_history |
| 94 | + |
| 95 | +# Output of 'npm pack' |
| 96 | +*.tgz |
| 97 | + |
| 98 | +# Yarn Integrity file |
| 99 | +.yarn-integrity |
| 100 | + |
| 101 | +# dotenv environment variable files |
| 102 | +.env |
| 103 | +.env.development.local |
| 104 | +.env.test.local |
| 105 | +.env.production.local |
| 106 | +.env.local |
| 107 | + |
| 108 | +# parcel-bundler cache (https://parceljs.org/) |
| 109 | +.cache |
| 110 | +.parcel-cache |
| 111 | + |
| 112 | +# Next.js build output |
| 113 | +.next |
| 114 | +out |
| 115 | + |
| 116 | +# Nuxt.js build / generate output |
| 117 | +.nuxt |
| 118 | +dist |
| 119 | + |
| 120 | +# Gatsby files |
| 121 | +.cache/ |
| 122 | +# Comment in the public line in if your project uses Gatsby and not Next.js |
| 123 | +# https://nextjs.org/blog/next-9-1#public-directory-support |
| 124 | +# public |
| 125 | + |
| 126 | +# vuepress build output |
| 127 | +.vuepress/dist |
| 128 | + |
| 129 | +# vuepress v2.x temp and cache directory |
| 130 | +.temp |
| 131 | +.cache |
| 132 | + |
| 133 | +# Docusaurus cache and generated files |
| 134 | +.docusaurus |
| 135 | + |
| 136 | +# Serverless directories |
| 137 | +.serverless/ |
| 138 | + |
| 139 | +# FuseBox cache |
| 140 | +.fusebox/ |
| 141 | + |
| 142 | +# DynamoDB Local files |
| 143 | +.dynamodb/ |
| 144 | + |
| 145 | +# TernJS port file |
| 146 | +.tern-port |
| 147 | + |
| 148 | +# Stores VSCode versions used for testing VSCode extensions |
| 149 | +.vscode-test |
| 150 | + |
| 151 | +# yarn v2 |
| 152 | +.yarn/cache |
| 153 | +.yarn/unplugged |
| 154 | +.yarn/build-state.yml |
| 155 | +.yarn/install-state.gz |
| 156 | +.pnp.* |
| 157 | + |
| 158 | +# Docker exceptions |
| 159 | +.devcontainer |
| 160 | +.dockerignore |
| 161 | +.editorconfig |
| 162 | +.git |
| 163 | +.github |
| 164 | +.gitignore |
| 165 | +Dockerfile |
0 commit comments