馃彴 Self-documenting Identifier Name Analyser for Go
at main 20 lines 267 B view raw
1set shell := ["bash", "-eu", "-o", "pipefail", "-c"] 2 3build: 4 mkdir -p bin 5 go build -o ./bin/kivia . 6 7format: 8 iku -w . || go fmt ./... 9 10test: 11 go test ./... 12 13run *args: 14 go run . {{args}} 15 16self: 17 go run . --path ./... --ignore file=testdata 18 19install: 20 go install .