Fix indentation in makefile (#361)
This commit is contained in:
parent
8f6a6d162d
commit
027491716e
8
Makefile
8
Makefile
|
|
@ -7,14 +7,14 @@ MISSPELL_BINARY=$(TOOLS_DIR)/misspell
|
||||||
.PHONY: precommit
|
.PHONY: precommit
|
||||||
precommit: install-misspell misspell
|
precommit: install-misspell misspell
|
||||||
|
|
||||||
.PHONY: install-misspell
|
.PHONY: install-misspell
|
||||||
install-misspell: go.mod go.sum internal/tools.go
|
install-misspell: go.mod go.sum internal/tools.go
|
||||||
go build -o $(MISSPELL_BINARY) github.com/client9/misspell/cmd/misspell
|
go build -o $(MISSPELL_BINARY) github.com/client9/misspell/cmd/misspell
|
||||||
|
|
||||||
.PHONY: misspell
|
.PHONY: misspell
|
||||||
misspell:
|
misspell:
|
||||||
$(MISSPELL_BINARY) -error $(ALL_DOCS)
|
$(MISSPELL_BINARY) -error $(ALL_DOCS)
|
||||||
|
|
||||||
.PHONY: misspell-correction
|
.PHONY: misspell-correction
|
||||||
misspell-correction:
|
misspell-correction:
|
||||||
$(MISSPELL_BINARY) -w $(ALL_DOCS)
|
$(MISSPELL_BINARY) -w $(ALL_DOCS)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue