From e9f598609bc0c22c296e62f52041d6032e8e8046 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 5 Aug 2024 14:16:11 -0700 Subject: [PATCH] Fix for codespell recipe --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index c8a06b52..172de444 100644 --- a/Justfile +++ b/Justfile @@ -15,7 +15,7 @@ export DATASETTE_SECRET := "not_a_secret" pipenv run codespell README.md --ignore-words docs/codespell-ignore-words.txt pipenv run codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt pipenv run codespell datasette -S datasette/static --ignore-words docs/codespell-ignore-words.txt - pipenv run tests --ignore-words docs/codespell-ignore-words.txt + pipenv run codespell tests --ignore-words docs/codespell-ignore-words.txt # Run linters: black, flake8, mypy, cog @lint: codespell