1
0

Fix case-insensitive task search for postgresql (#524)

"Fix" gocyclo

Fix case-insensitive task search for postgresql

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/524
This commit is contained in:
konrad
2020-05-15 14:12:20 +00:00
parent 92e5e2db6a
commit 8758fb6ac5
3 changed files with 32 additions and 3 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 27 $$S || exit 1; done;
for S in $(GOFILES); do gocyclo -over 28 $$S || exit 1; done;
.PHONY: static-check
static-check: