Last active
October 15, 2020 18:14
-
-
Save MarwanDebbiche/790fc128e0bced00f15545a7de64ba63 to your computer and use it in GitHub Desktop.
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
repos: | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v3.2.0 | |
hooks: | |
- id: check-yaml | |
- id: debug-statements | |
- id: end-of-file-fixer | |
- id: trailing-whitespace | |
- repo: local | |
hooks: | |
- id: pylint | |
name: pylint | |
entry: pylint | |
exclude: ^(tests/) | |
language: system | |
types: [python] | |
- repo: https://github.com/pre-commit/mirrors-mypy | |
rev: v0.790 | |
hooks: | |
- id: mypy | |
exclude: ^(tests/) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment