Add .gitignore, .editorconfig, REPO_POLICIES.md, and .dockerignore
to bring the repository into compliance with REPO_POLICIES standards.
- .gitignore: Standard template from sneak/prompts plus Go-specific entries
- .editorconfig: root=true, UTF-8, LF, tabs for Go/Makefile, 2 spaces elsewhere
- REPO_POLICIES.md: Copied from sneak/prompts (last_modified: 2026-02-22)
- .dockerignore: Excludes .git, bin/, editor configs, docs; keeps all build files
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Add
.gitignore,.editorconfig,REPO_POLICIES.md, and.dockerignoreto bring the repository into compliance with REPO_POLICIES standards.Changes
.gitignore(#132): Standard template fromsneak/promptsplus Go-specific entries (bin/, *.exe, *.test, etc.).editorconfig(#133): root=true, UTF-8, LF line endings, trim trailing whitespace, final newline. Go and Makefile use tabs, everything else 2 spaces.REPO_POLICIES.md(#134): Copied as-is fromsneak/prompts(last_modified: 2026-02-22).dockerignore(#135): Excludes.git,bin/,.editorconfig,.vscode/,.idea/,*.test,LICENSE, and documentation files. Keeps all files needed by the Dockerfile (source code, go.mod, go.sum, Makefile, .golangci.yml, static/, templates/).docker build .passes with these changes.closes #132, closes #133, closes #134, closes #135
Review: PASS ✅
Reviewed all 4 files added in this PR for REPO_POLICIES compliance.
Files Verified
.gitignore.editorconfigREPO_POLICIES.md.dockerignoreIntegrity Checks
docker build .passes — all lint checks, tests, and compilation succeed with the new.dockerignoreCloses #132, #133, #134, #135.