Check python files in pwd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pycheck() { | |
echo | |
echo | |
echo | |
find . -name "*.py" | xargs mypy --ignore-missing-imports | |
echo | |
echo | |
echo | |
find . -name "*.py" | xargs misspell | |
echo | |
echo | |
echo | |
find . -name "*.py" | xargs pylint --disable=F0401 -f parseable | grep .py | |
echo | |
echo | |
echo | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment