Skip to content

Commit

Permalink
add spellcheck make target
Browse files Browse the repository at this point in the history
  • Loading branch information
xrstf committed Dec 2, 2023
1 parent 43cfc7d commit 5c2c419
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ GO_BUILD_FLAGS ?= -v -ldflags '$(GO_LDFLAGS)'
GO_TEST_FLAGS ?=

.PHONY: all
all: clean generate build docs test
all: clean generate build docs test spellcheck

.PHONY: generate
generate:
Expand Down Expand Up @@ -44,3 +44,7 @@ test:
.PHONY: lint
lint:
golangci-lint run ./...

.PHONY: spellcheck
spellcheck:
typos
2 changes: 1 addition & 1 deletion pkg/lang/parser/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5c2c419

Please sign in to comment.