From e9d7523a1f8ac1c215a23d25b1166a4f0ca0b215 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 31 Mar 2023 12:00:24 +0700 Subject: [PATCH] ignore mypy_cache from codespell --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index b76a68c..3f258b7 100755 --- a/deploy.sh +++ b/deploy.sh @@ -87,7 +87,7 @@ function validate { echo "running black" black --exclude "migrations/*" --diff --color --check -l 79 "$check_path" echo "running codespell" - codespell --skip="./.git,./package.json,./package-lock.json,./node_modules" "$check_path" + codespell --skip="./.git,./package.json,./package-lock.json,./node_modules,./.mypy_cache" "$check_path" echo "running flake8" flake8 "$check_path" --exclude "migrations" --count --max-complexity=10 \ --max-line-length=79 --show-source --statistics