hatch-surf/.gitignore
Riley Zhang 6f03ff2465 Add linting, formatting, and test infrastructure for Phase 1
- Add .golangci.yml with sensible linting rules
- Add Makefile with test, lint, fmt, vet, build targets
- Enhance CI pipeline with Go formatting check and golangci-lint job
- Create shared testutil.FakeRepository for handler tests
- Refactor handler tests to use shared FakeRepository
- Add data/ and coverage.out to .gitignore

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 04:59:52 +02:00

29 lines
183 B
Plaintext

# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
go.work
# Build
/bin
/dist
# Runtime data
data/
*.db
coverage.out
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
/hatch
hatch.exe