1
0

Task Filter Fixes (#495)

Fix gocyclo

Fix misspell

Error codes docs

Filter fixes

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/495
This commit is contained in:
konrad
2020-05-09 15:48:56 +00:00
parent def2362682
commit 8ac158cdb4
6 changed files with 75 additions and 16 deletions

View File

@ -219,7 +219,7 @@ gocyclo-check:
go get -u github.com/fzipp/gocyclo; \
go install $(GOFLAGS) github.com/fzipp/gocyclo; \
fi
for S in $(GOFILES); do gocyclo -over 24 $$S || exit 1; done;
for S in $(GOFILES); do gocyclo -over 27 $$S || exit 1; done;
.PHONY: static-check
static-check: