Skip to content
Snippets Groups Projects
.pre-commit-config.yaml 498 B
repos:
  - repo: https://github.com/psf/black
    rev: 22.6.0
    hooks:
    - id: black
  - repo: https://github.com/PyCQA/isort
    rev: 5.10.1
    hooks:
      - id: isort
  - repo: https://github.com/codespell-project/codespell
    rev: "v2.1.0"
    hooks:
      - id: codespell
        args: [""]
  - repo: https://github.com/PyCQA/flake8
    rev: 5.0.2
    hooks:
      - id: flake8
        args: ["--config=.flake8"]
        additional_dependencies: [
          "flake8-docstrings"
        ]