Skip to content

Commit a826d17

Browse files
committed
🏭 Expand the range of things that are spell-checked
1 parent d36bc80 commit a826d17

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
app := hike
22
src := src/
33
tests := tests/
4+
docs := docs/
45
run := rye run
56
test := rye test
67
python := $(run) python
@@ -67,7 +68,7 @@ test: # Run the unit tests
6768

6869
.PHONY: spellcheck
6970
spellcheck: # Spell check the code
70-
$(spell) $(src) docs/
71+
$(spell) *.md $(src) $(docs) $(tests)
7172

7273
.PHONY: checkall
7374
checkall: spellcheck codestyle lint stricttypecheck test # Check all the things

0 commit comments

Comments
 (0)