web-check/.gitignore

61 lines
925 B
Plaintext
Raw Permalink Normal View History

# ------------------------
# ENVIRONMENT SETTINGS
# ------------------------
.env
2022-06-11 22:59:03 +02:00
# ------------------------
# PRODUCTION
# ------------------------
/build/
# ------------------------
# DEPLOYMENT
# ------------------------
.vercel/
.netlify/
.webpack/
.serverless/
# ------------------------
# DEPENDENCIES
# ------------------------
node_modules/
.yarn/cache/
.yarn/unplugged/
.yarn/build-state.yml
.yarn/install-state.gz
.pnpm/
.pnp.*
2022-06-11 22:59:03 +02:00
# ------------------------
# LOGS
# ------------------------
logs/
*.log
2023-08-11 23:50:55 +02:00
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
2023-08-11 23:50:55 +02:00
# ------------------------
# TESTING
# ------------------------
coverage/
.nyc_output/
2022-06-11 22:59:03 +02:00
# ------------------------
# OS SPECIFIC
# ------------------------
.DS_Store
Thumbs.db
2022-06-11 22:59:03 +02:00
# ------------------------
# EDITORS
# ------------------------
.idea/
.vscode/
*.swp
*.swo
2023-08-11 23:50:55 +02:00