kamilsk / retry

♻️ The most advanced interruptible mechanism to perform actions repetitively until successful.
https://pkg.go.dev/github.com/kamilsk/retry/v5
MIT License
340 stars 14 forks source link

fix check-code-quality #98

Closed kamilsk closed 6 years ago

kamilsk commented 6 years ago
.PHONY: check-code-quality
check-code-quality: ARGS = \
    --exclude=".*_test\.go:.*error return value not checked.*\(errcheck\)$$" \
    --exclude="duplicate of.*_test.go.*\(dupl\)$$" \
    --vendor --deadline=2m ./...
check-code-quality: docker-tool-gometalinter

also define correct deadline: time make check-code-quality

blocked by:

kamilsk commented 6 years ago

extend git ignore

# go test and code quality report
*.out

add code quality report

.PHONY: code-quality-report
code-quality-report:
    time make check-code-quality | tail +7 | tee report.out | pbcopy