honeybadger-io / honeybadger-go

Send Go (golang) panics and errors to Honeybadger.
https://www.honeybadger.io/
MIT License
34 stars 15 forks source link

Add simple makefile with helpful dev tasks #1

Closed mperham closed 9 years ago

mperham commented 9 years ago

Adds a makefile with tasks for auto-formatting code and running gometalinter to find possible bugs via static analysis tools. You'll need to run make prepare once and then you can run make (to run tests), make fmt, make lint, etc.

mperham commented 9 years ago

Run make lint and you'll find about 50 warnings which should be investigated.

joshuap commented 9 years ago

Thanks!