New features and bug reports are welcome. We appreciate issues and pull requests.
- Keep changes focused and small when possible.
- Link the related issue if one exists.
- Run build, tests, and formatting before opening the PR.
- Install Go 1.24.5.
- Clone the repo and change into the directory.
- Ensure git is available on your PATH for tests.
Build the binary.
make build
Build output:
- ./ec
Run all tests.
make test
Format all Go files in the repo.
make fmt
Format only the files you changed.
gofmt -w path/to/file.go
Check formatting without changing files.
make fmt-check