Update dependencies
This commit is contained in:
parent
1eff11b558
commit
88e9502e5c
12
Makefile
Normal file
12
Makefile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
.PHONY: build fmt lint
|
||||||
|
|
||||||
|
build: fmt lint
|
||||||
|
go build .
|
||||||
|
|
||||||
|
fmt:
|
||||||
|
gofmt -w -r "interface{} -> any" .
|
||||||
|
go fmt ./...
|
||||||
|
|
||||||
|
lint:
|
||||||
|
go vet ./...
|
||||||
|
staticcheck ./...
|
@ -5,6 +5,6 @@ func AsciiLowercase() (dict []int) {
|
|||||||
for i := 97; i <= 122; i++ {
|
for i := 97; i <= 122; i++ {
|
||||||
dict = append(dict, i)
|
dict = append(dict, i)
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user