only run misspell on our code (not _repos)

This commit is contained in:
Shawn Smith
2017-11-09 15:34:43 +09:00
parent 2c54dab853
commit 3cd9b78af3

View File

@@ -20,4 +20,4 @@ start-dev:
go run main.go -http 127.0.0.1:8000 -dev
misspell:
find . -name '*.go' -not -path './vendor/*' | xargs misspell -error
find . -name '*.go' -not -path './vendor/*' -not -path './_repos/*' | xargs misspell -error