summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2022-10-19 00:52:25 +0800
committerGitHub <noreply@github.com>2022-10-18 12:52:25 -0400
commit0614ae1c446e6a4ddaed4cca5a43ce7a2003d890 (patch)
tree2fc100f945bb84da9db240e88603ea8f0ab4e322 /Makefile
parentf0182d88402c68c4032bd5314680ef4bee1f16ea (diff)
downloadgitea-0614ae1c446e6a4ddaed4cca5a43ce7a2003d890.tar.gz
gitea-0614ae1c446e6a4ddaed4cca5a43ce7a2003d890.zip
Remove unnecessary misspell ignore pattern (#21475)
It doesn't make sense to ignore the pattern again and again.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5170436d83..f1b6790dc5 100644
--- a/Makefile
+++ b/Makefile
@@ -280,7 +280,7 @@ fmt-check: fmt
.PHONY: misspell-check
misspell-check:
- go run $(MISSPELL_PACKAGE) -error -i unknwon $(GO_DIRS) $(WEB_DIRS)
+ go run $(MISSPELL_PACKAGE) -error $(GO_DIRS) $(WEB_DIRS)
.PHONY: vet
vet: