From 39cea3a15992e3d27454e0bc38aef0561a11b35a Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sat, 2 May 2020 12:38:25 -0500 Subject: [PATCH] maint/build ~ add 'action-spellcheck-codespell' `cargo-make` target; prelim to a 'spellcheck' target --- Makefile.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.toml b/Makefile.toml index 275fcd2e9..9ab3961d1 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -266,6 +266,11 @@ description = "`cargo fmt` lint report" command = "cargo" args = ["fmt", "--", "--check"] +[tasks.action-spellcheck-codespell] +description = "`codespell` spellcheck repository" +command = "codespell" # (from `pip install codespell`) +args = [".", "--skip=*/.git,./target,./tests/fixtures", "--ignore-words-list=mut,od"] + [tasks.action-test_quiet] description = "Test (in `--quiet` mode)" command = "cargo"