diff options
Diffstat (limited to '.prettierignore')
-rw-r--r-- | .prettierignore | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..23da47f --- /dev/null +++ b/.prettierignore @@ -0,0 +1,72 @@ +# Dependencies +node_modules/ +package-lock.json +yarn.lock +pnpm-lock.yaml + +# Build outputs +dist/ +build/ +.next/ +.nuxt/ +.vuepress/dist/ +.serverless/ +.vercel/ + +# Logs +*.log +logs/ + +# Runtime data +pids/ +*.pid +*.seed +*.pid.lock + +# Coverage directory used by tools like istanbul +coverage/ +*.lcov + +# Generated files +*.d.ts +*.tsbuildinfo + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# Temporary files +*.tmp +*.temp + +# Docker +Dockerfile* +.dockerignore + +# Git +.git/ +.gitignore + +# CI/CD +.github/ +.gitlab-ci.yml + +# Config files that might have specific formatting +.env* +*.conf +*.config.js +*.config.ts + +# Markdown files that might be auto-generated +CHANGELOG.md
\ No newline at end of file |