9 lines
168 B
Makefile
9 lines
168 B
Makefile
|
### Tools needed for development
|
||
|
devtools:
|
||
|
@echo "Installing devtools"
|
||
|
go install mvdan.cc/gofumpt@latest
|
||
|
|
||
|
### Formatting, linting, and vetting
|
||
|
fmt:
|
||
|
gofumpt -l -w .
|