.gitignore 652 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. # Test binary, built with `go test -c`
  8. *.test
  9. # Output of the go coverage tool, specifically when used with LiteIDE
  10. *.out
  11. # Dependency directories (remove the comment below to include it)
  12. # vendor/
  13. # Go workspace file
  14. go.work
  15. go.work.sum
  16. # IDE specific files
  17. .idea/
  18. .vscode/
  19. *.swp
  20. *.swo
  21. # OS specific files
  22. .DS_Store
  23. .DS_Store?
  24. ._*
  25. .Spotlight-V100
  26. .Trashes
  27. ehthumbs.db
  28. Thumbs.db
  29. *.log
  30. # Binary output directory
  31. /bin/
  32. /dist/
  33. # Local environment variables
  34. .env
  35. .env.local
  36. **/.crush/**
  37. /crush
  38. /tmp/
  39. manpages/
  40. completions/
  41. !internal/tui/components/completions/
  42. .prettierignore