chore: add REPO_POLICIES compliance files #155
Reference in New Issue
Block a user
Delete Branch "chore/repo-policies-compliance"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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.