Last active
July 21, 2024 18:50
-
-
Save obfusk/de7510de39eca56b7d63e2f17bc0abf6 to your computer and use it in GitHub Desktop.
pychk
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
[flake8] | |
ignore = E501 |
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
[MESSAGES CONTROL] | |
confidence=HIGH,INFERENCE | |
disable=invalid-name,missing-docstring,no-member,use-dict-literal,no-else-return |
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
#!/bin/bash | |
set -x | |
flake8 --config ~/.flake8 "$@" | |
pylint "$@" | |
mypy --strict --disallow-any-unimported "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment