Skip to content

Instantly share code, notes, and snippets.

@mperlet
Created January 4, 2019 11:29
Embed
What would you like to do?
Check python files in pwd
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