linting
golangci-lint wired into the lint Makefile target.
makefile adds a Makefile to your Go service with standard targets for the most common development tasks.
Makefile with build, test, lint, run, and clean targetsUse makefile to standardize development commands across the team. make build, make test, make lint work consistently regardless of the underlying Go commands — new contributors don’t need to read documentation to get started.
verikt new my-service --language go --cap makefile# or add to an existing service:verikt add makefilelinting
testing
docker