summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBo-Yi Wu <appleboy.tw@gmail.com>2018-12-03 22:28:46 +0800
committertechknowlogick <hello@techknowlogick.com>2018-12-03 09:28:46 -0500
commit20c54f88b23bbf56ac3cc3a74baeed98d7ab0844 (patch)
tree9a87f51423742041ec66d46947000520030817d3 /Makefile
parent2d707fe5e663abb0be2127362c760446ce6cedab (diff)
downloadgitea-20c54f88b23bbf56ac3cc3a74baeed98d7ab0844.tar.gz
gitea-20c54f88b23bbf56ac3cc3a74baeed98d7ab0844.zip
refactor: replace lint to revive (#5422)
* refactor: replace lint to revive * make changes. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5e7e72df0b..f007665e71 100644
--- a/Makefile
+++ b/Makefile
@@ -128,10 +128,10 @@ errcheck:
.PHONY: lint
lint:
- @hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
- $(GO) get -u golang.org/x/lint/golint; \
+ @hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
+ $(GO) get -u github.com/mgechev/revive; \
fi
- for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
+ revive -config .revive.toml -exclude=./vendor/... ./... || exit 1
.PHONY: misspell-check
misspell-check: