diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2018-12-03 22:28:46 +0800 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-12-03 09:28:46 -0500 |
commit | 20c54f88b23bbf56ac3cc3a74baeed98d7ab0844 (patch) | |
tree | 9a87f51423742041ec66d46947000520030817d3 /Makefile | |
parent | 2d707fe5e663abb0be2127362c760446ce6cedab (diff) | |
download | gitea-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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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: |