chore: add REPO_POLICIES compliance files
All checks were successful
Check / check (pull_request) Successful in 1m34s

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
This commit is contained in:
clawbot
2026-03-01 14:54:26 -08:00
parent 94639a47e9
commit fb8dfef501
4 changed files with 244 additions and 0 deletions

15
.editorconfig Normal file
View File

@@ -0,0 +1,15 @@
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
[*.go]
indent_style = tab
[Makefile]
indent_style = tab