Files
moreminimore-vibe/.gitignore
2025-12-05 14:37:19 +07:00

116 lines
1.8 KiB
Plaintext

# =============================================
# VITE SPECIFIC
# =============================================
# Vite cache
.vite/
.vite-ssg-manifest.json
# Vite build output
dist/
dist-ssr/
*.local
# Vite environment variables
.env
.env.local
.env.development.local
.env.production.local
.env.test.local
# =============================================
# NODE.JS
# =============================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# =============================================
# DEVELOPMENT
# =============================================
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# =============================================
# TESTING
# =============================================
# Test coverage
coverage/
.nyc_output/
# Cypress
cypress/videos/
cypress/screenshots/
cypress/downloads/
# Playwright
playwright-report/
test-results/
# Vitest
__snapshots__/
*.snap
# Your .e2e-test directory
.e2e-test/
# =============================================
# PACKAGE MANAGERS
# =============================================
# Yarn 2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# =============================================
# BUILD OUTPUTS
# =============================================
# TypeScript
*.tsbuildinfo
# Vue
*.vue.html
out/
# =============================================
# LOGS
# =============================================
logs/
*.log
# =============================================
# TEMPORARY FILES
# =============================================
*.tmp
*.temp
*~