File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pipeline:
7272 - make clean
7373 - make generate
7474 - make vet
75- - make revive
75+ - make lint
7676 - make fmt-check
7777 - make swagger-check
7878 - make swagger-validate
File renamed without changes.
Original file line number Diff line number Diff line change @@ -126,12 +126,12 @@ errcheck:
126126 fi
127127 errcheck $(PACKAGES )
128128
129- .PHONY : revive
130- revive :
129+ .PHONY : lint
130+ lint :
131131 @hash revive > /dev/null 2>&1 ; if [ $$ ? -ne 0 ]; then \
132132 $(GO ) get -u github.com/mgechev/revive; \
133133 fi
134- revive -config config .toml -exclude=./vendor/... ./... || exit 1
134+ revive -config .revive .toml -exclude=./vendor/... ./... || exit 1
135135
136136.PHONY : misspell-check
137137misspell-check :
You can’t perform that action at this time.
0 commit comments