Skip to content

Instantly share code, notes, and snippets.

@pybites
Created December 8, 2021 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pybites/929596b81b619ce3c115607d045af718 to your computer and use it in GitHub Desktop.
Save pybites/929596b81b619ce3c115607d045af718 to your computer and use it in GitHub Desktop.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: debug-statements
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: ["flake8-bandit", "flake8-bugbear"]
- repo: https://github.com/pycqa/isort
rev: 5.9.3
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/psf/black
rev: 21.7b0
hooks:
- id: black
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v2.23.1
hooks:
- id: pyupgrade
@bbelderbos
Copy link

Might want to use ruff these days ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment