diff options
author | Dan Kegel <[email protected]> | 2024-08-13 11:39:41 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-08-14 12:00:55 +0200 |
commit | a47ff02c82b14af7bb97965274edbe6d60fa6b6a (patch) | |
tree | 63ed4bb4b7e54f9fd7d815799f55825c0873ef3a /GNUmakefile | |
parent | e27b2c4ad67f1cc3e7914ab1a1e82de95038dcd4 (diff) | |
download | tinygo-a47ff02c82b14af7bb97965274edbe6d60fa6b6a.tar.gz tinygo-a47ff02c82b14af7bb97965274edbe6d60fa6b6a.zip |
make spell: add a few missing misspellings, fix format of .csv file, also fix *.md
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 504e1561a..68bb4430f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -963,11 +963,11 @@ lint: tools ## Lint source tree SPELLDIRSCMD=find . -depth 1 -type d | egrep -wv '.git|lib|llvm|src'; find src -depth 1 | egrep -wv 'device|internal|net|vendor'; find src/internal -depth 1 -type d | egrep -wv src/internal/wasi .PHONY: spell spell: tools ## Spellcheck source tree - misspell -error --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) + misspell -error --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.md .PHONY: spellfix spellfix: tools ## Same as spell, but fixes what it finds - misspell -w --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) + misspell -w --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.md # https://www.client9.com/self-documenting-makefiles/ .PHONY: help |