From 3981f7d85111f3db86375a61cd13b78c9af8ae77 Mon Sep 17 00:00:00 2001 From: Tobias Hienzsch Date: Fri, 1 May 2020 00:43:40 +0200 Subject: [PATCH] Add interactive spellcheck target to Makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index cd685bd..1f8bb1f 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,13 @@ dev: .PHONY: spellcheck spellcheck: + @which mdspell + mdspell "chapters/**/*.md" + mdspell README.md + mdspell SUMMARY.md + +.PHONY: spellcheck-report +spellcheck-report: @which mdspell mdspell -r "chapters/**/*.md" mdspell -r README.md