.prettierignore 769 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # macOS
  2. .DS_Store
  3. .AppleDouble
  4. .LSOverride
  5. ._*
  6. # Minified files
  7. *.min.css
  8. *.min.js
  9. # Husky
  10. .husky/_/
  11. # Exclude bats submodules if present
  12. /test/test_helper/*
  13. # Bats seems to break Prettier
  14. *.bats
  15. # Exclude bats submodules if present
  16. /test/test_helper/*
  17. # Web templates (for now)
  18. web/templates/
  19. # Hestia Nginx.conf
  20. /src/deb/nginx/nginx.conf
  21. /src/rpm/nginx/nginx.conf
  22. # Email templates
  23. /install/common/templates/email/
  24. # Vendor/packages
  25. .pnp.*
  26. .yarn/*
  27. **/node_modules/
  28. **/vendor/
  29. **/composer.phar
  30. **/composer.json
  31. **/composer.lock
  32. # vitepress build output
  33. **/.vitepress/dist/
  34. **/.vitepress/cache/
  35. # Logs
  36. logs
  37. *.log
  38. npm-debug.log*
  39. yarn-debug.log*
  40. yarn-error.log*
  41. pnpm-debug.log*
  42. lerna-debug.log*
  43. # PNPM, NPM and YARN
  44. pnpm-lock.yaml
  45. package-lock.json
  46. yarn.lock