pkg
is the monorepo for common Go modules maintained by Defense Unicorns.
Follow the steps in CONTRIBUTING.md to contribute to this project.
View the Makefile
for available targets.
# Run all formatters
make lint-fix
# Run all linters
make lint
# Run all tests
make test
To run any of the above against an individual module, append -<module name>
to the target.
# Run all formatters for the helpers module
make lint-fix-helpers
# Run all linters for the helpers module
make lint-helpers
# Run all tests for the helpers module
make test-helpers