Skip to content

Commit a6a9331

Browse files
committed
Remove golint
Deprecated.
1 parent 61f367c commit a6a9331

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
BINARY = go-search-replace
22
BUILDDIR = ./build
33

4-
all: vet fmt lint test build
4+
all: vet fmt test build
55

6-
ci: clean vet lint test
6+
ci: clean vet test
77

88
build: clean
99
which gox > /dev/null || go get -u github.com/mitchellh/gox
@@ -16,14 +16,11 @@ vet:
1616
fmt:
1717
gofmt -s -l . | grep -v vendor | tee /dev/stderr
1818

19-
lint:
20-
golint ./... | grep -v vendor | tee /dev/stderr
21-
2219
test:
2320
go test -v ./...
2421
go test -bench .
2522

2623
clean:
2724
rm -rf ${BUILDDIR}
2825

29-
.PHONY: all clean vet fmt lint test build
26+
.PHONY: all ci clean vet fmt test build

0 commit comments

Comments
 (0)