Last active
June 8, 2024 19:32
-
-
Save eyaltrabelsi/eefe8e77dee6d51f2eb2d9892f0e9ea6 to your computer and use it in GitHub Desktop.
testing python syntax
This file contains hidden or 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
| # .pre-commit-config.yaml | |
| repos: | |
| - repo: https://github.com/pre-commit/pre-commit-hooks | |
| rev: v4.0.1 | |
| hooks: | |
| - id: check-ast # Testing valid python code | |
| - repo: https://github.com/pre-commit/mirrors-mypy | |
| rev: v0.910 # Use the latest version available | |
| hooks: | |
| - id: mypy # Testing valid python static types code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment