add package comment and enable all checks of staticcheck

This commit is contained in:
itchyny 2023-04-09 12:23:33 +09:00
parent 8d31a98aa7
commit 49d37b4903
2 changed files with 2 additions and 1 deletions

View file

@ -45,7 +45,7 @@ test: build
.PHONY: lint
lint: $(GOBIN)/staticcheck
go vet ./...
staticcheck ./...
staticcheck -checks all ./...
$(GOBIN)/staticcheck:
go install honnef.co/go/tools/cmd/staticcheck@latest

1
mmv.go
View file

@ -1,3 +1,4 @@
// Package mmv provides a method to rename multiple files.
package mmv
import (