Created
August 24, 2023 08:44
-
-
Save bbelderbos/8fec0277ae1043bfec1f34d24011369c 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/psf/black | |
rev: 23.7.0 | |
hooks: | |
- id: black | |
args: [--line-length, "79"] | |
- repo: https://github.com/pycqa/flake8 | |
rev: 6.1.0 | |
hooks: | |
- id: flake8 | |
args: [--config=.flake8] | |
- repo: https://github.com/PyCQA/isort | |
rev: 5.12.0 | |
hooks: | |
- id: isort | |
args: [--profile, black] | |
- repo: https://github.com/asottile/pyupgrade | |
rev: v3.10.1 | |
hooks: | |
- id: pyupgrade | |
- repo: https://github.com/pre-commit/mirrors-mypy | |
rev: v1.5.1 | |
hooks: | |
- id: mypy | |
args: [--no-strict-optional, --ignore-missing-imports, --check-untyped-defs] | |
- repo: https://github.com/getcodelimit/codelimit | |
rev: 0.6.2 | |
hooks: | |
- id: codelimit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment