ignore mypy_cache from codespell

pull/474/head
simon 1 year ago
parent 981a4cb8b3
commit e9d7523a1f
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -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

Loading…
Cancel
Save