Created
January 4, 2019 11:29
-
-
Save mperlet/51aa77a6a9571f79cb5cc835149a7fe9 to your computer and use it in GitHub Desktop.
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