Skip to content

Instantly share code, notes, and snippets.

@bbelderbos
Created August 24, 2023 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbelderbos/8fec0277ae1043bfec1f34d24011369c to your computer and use it in GitHub Desktop.
Save bbelderbos/8fec0277ae1043bfec1f34d24011369c to your computer and use it in GitHub Desktop.
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