.prettierignore 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Ignore all files in the node_modules directory
  2. node_modules
  3. # Ignore all files in the .next directory (Next.js build output)
  4. .next
  5. # Ignore all files in the .out directory (TypeScript build output)
  6. .out
  7. # Ignore all files in the .cache directory (Prettier cache)
  8. .cache
  9. # Ignore all files in the .vscode directory (Visual Studio Code settings)
  10. .vscode
  11. # Ignore all files in the .idea directory (IntelliJ IDEA settings)
  12. .idea
  13. # Ignore all files in the dist directory (build output)
  14. dist
  15. # Ignore all files in the build directory (build output)
  16. build
  17. # Ignore all files in the coverage directory (test coverage reports)
  18. coverage
  19. # Ignore all files with the .log extension
  20. *.log
  21. # Ignore all files with the .tmp extension
  22. *.tmp
  23. # Ignore all files with the .swp extension
  24. *.swp
  25. # Ignore all files with the .DS_Store extension (macOS specific)
  26. .DS_Store
  27. # Ignore all files in uploads directory
  28. uploads