summaryrefslogtreecommitdiff
path: root/vendor/github.com/client9/misspell/Makefile
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2018-04-30 14:17:19 -0700
committerChristoph Blecker <admin@toph.ca>2018-04-30 14:17:19 -0700
commit0e09735df78e5cb098e6d052cb0b14ee2d87f02b (patch)
tree9743713dfc9f783243c52ec0106df85921f6c25e /vendor/github.com/client9/misspell/Makefile
parenta6c01b9a50e8b0bcaf101a616b27132617e5008f (diff)
Update deps
Diffstat (limited to 'vendor/github.com/client9/misspell/Makefile')
-rw-r--r--vendor/github.com/client9/misspell/Makefile84
1 files changed, 0 insertions, 84 deletions
diff --git a/vendor/github.com/client9/misspell/Makefile b/vendor/github.com/client9/misspell/Makefile
deleted file mode 100644
index 0ccf7486..00000000
--- a/vendor/github.com/client9/misspell/Makefile
+++ /dev/null
@@ -1,84 +0,0 @@
-CONTAINER=nickg/misspell
-
-install: ## install misspell into GOPATH/bin
- go install ./cmd/misspell
-
-build: hooks ## build and lint misspell
- go install ./cmd/misspell
- gometalinter \
- --vendor \
- --deadline=60s \
- --disable-all \
- --enable=vet \
- --enable=golint \
- --enable=gofmt \
- --enable=goimports \
- --enable=gosimple \
- --enable=staticcheck \
- --enable=ineffassign \
- --exclude=/usr/local/go/src/net/lookup_unix.go \
- ./...
- go test .
-
-test: ## run all tests
- go test .
-
-# the grep in line 2 is to remove misspellings in the spelling dictionary
-# that trigger false positives!!
-falsepositives: /scowl-wl
- cat /scowl-wl/words-US-60.txt | \
- grep -i -v -E "payed|Tyre|Euclidian|nonoccurence|dependancy|reenforced|accidently|surprize|dependance|idealogy|binominal|causalities|conquerer|withing|casette|analyse|analogue|dialogue|paralyse|catalogue|archaeolog|clarinettist|catalyses|cancell|chisell|ageing|cataloguing" | \
- misspell -debug -error
- cat /scowl-wl/words-GB-ise-60.txt | \
- grep -v -E "payed|nonoccurence|withing" | \
- misspell -locale=UK -debug -error
-# cat /scowl-wl/words-GB-ize-60.txt | \
-# grep -v -E "withing" | \
-# misspell -debug -error
-# cat /scowl-wl/words-CA-60.txt | \
-# grep -v -E "withing" | \
-# misspell -debug -error
-
-bench: ## run benchmarks
- go test -bench '.*'
-
-clean: ## clean up time
- rm -rf dist/ bin/
- go clean ./...
- git gc --aggressive
-
-ci: ## run test like travis-ci does, requires docker
- docker run --rm \
- -v $(PWD):/go/src/github.com/client9/misspell \
- -w /go/src/github.com/client9/misspell \
- ${CONTAINER} \
- make build falsepositives
-
-docker-build: ## build a docker test image
- docker build -t ${CONTAINER} .
-
-docker-pull: ## pull latest test image
- docker pull ${CONTAINER}
-
-docker-console: ## log into the test image
- docker run --rm -it \
- -v $(PWD):/go/src/github.com/client9/misspell \
- -w /go/src/github.com/client9/misspell \
- ${CONTAINER} sh
-
-.git/hooks/pre-commit: scripts/pre-commit.sh
- cp -f scripts/pre-commit.sh .git/hooks/pre-commit
-.git/hooks/commit-msg: scripts/commit-msg.sh
- cp -f scripts/commit-msg.sh .git/hooks/commit-msg
-hooks: .git/hooks/pre-commit .git/hooks/commit-msg ## install git precommit hooks
-
-.PHONY: help ci console docker-build bench
-
-# https://www.client9.com/self-documenting-makefiles/
-help:
- @awk -F ':|##' '/^[^\t].+?:.*?##/ {\
- printf "\033[36m%-30s\033[0m %s\n", $$1, $$NF \
- }' $(MAKEFILE_LIST)
-.DEFAULT_GOAL=help
-.PHONY=help
-