Files
HackBrowserData/.gitignore
T
Roger 4c3dd9704f chore: add Go version lint check, modernize issue templates (#557)
- Add go.mod version check in lint workflow (fails if go directive != 1.20)
- Add golang.org/x/sys to dependabot ignore list (newer versions require Go 1.21+)
- Fix golang.org/x/text ignore comment
- Migrate issue templates from markdown to YAML forms:
- Update PR template (dev → main, add go.mod checklist item)
- Update .gitignore for YAML issue templates
2026-04-06 00:33:25 +08:00

47 lines
763 B
Plaintext

# Ignore everything by default (whitelist approach).
# This is critical for a security research tool — prevents
# accidental commit of browser data files (Cookies, Login Data, etc.)
*
# Allow git to traverse directories
!*/
# === Source code ===
!*.go
!go.mod
!go.sum
# === Project root config ===
!.gitattributes
!.gitignore
!.golangci.yml
!.goreleaser.yml
!.typos.toml
!CLAUDE.md
!LICENSE
# === Documentation ===
!README.md
!CONTRIBUTING.md
!CODE_OF_CONDUCT.md
!LOGO.png
# === GitHub ===
!.github/workflows/*.yml
!.github/ISSUE_TEMPLATE/*.md
!.github/ISSUE_TEMPLATE/*.yml
!.github/PULL_REQUEST_TEMPLATE.md
!.github/dependabot.yml
# === RFCs ===
!rfcs/*.md
# === Always ignore (override !*/) ===
.git/
.idea/
.vscode/
vendor/
result/
results/
.DS_Store