.prettierignore 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # See https://help.github.com/articles/ignoring-files for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile '~/.gitignore_global'
  6. # Ignore bundler config and downloaded libraries.
  7. /.bundle
  8. /vendor/bundle
  9. # Ignore the default SQLite database.
  10. /db/*.sqlite3
  11. /db/*.sqlite3-journal
  12. # Ignore all logfiles and tempfiles.
  13. .eslintcache
  14. /log/*
  15. !/log/.keep
  16. /tmp
  17. /coverage
  18. /public/system
  19. /public/assets
  20. /public/packs
  21. /public/packs-test
  22. .env
  23. .env.production
  24. .env.development
  25. /node_modules/
  26. /build/
  27. # Ignore Vagrant files
  28. .vagrant/
  29. # Ignore IDE files
  30. .vscode/
  31. .idea/
  32. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  33. /postgres
  34. /postgres14
  35. /redis
  36. /elasticsearch
  37. # Ignore Apple files
  38. .DS_Store
  39. # Ignore vim files
  40. *~
  41. *.swp
  42. # Ignore log files
  43. *.log
  44. # Ignore Docker option files
  45. docker-compose.override.yml
  46. # Ignore public
  47. /public/assets
  48. /public/emoji
  49. /public/packs
  50. /public/packs-test
  51. /public/system
  52. # Ignore emoji map file
  53. /app/javascript/mastodon/features/emoji/emoji_map.json
  54. # Ignore locale files
  55. /app/javascript/mastodon/locales/*.json
  56. /config/locales
  57. # Ignore vendored CSS reset
  58. app/javascript/styles/mastodon/reset.scss
  59. # Ignore Javascript pending https://github.com/mastodon/mastodon/pull/23631
  60. *.js
  61. *.jsx
  62. # Ignore HTML till cleaned and included in CI
  63. *.html
  64. # Ignore the generated AUTHORS.md
  65. AUTHORS.md
  66. # Process a few selected JS files
  67. !lint-staged.config.js