https://github.com/unit8co/darts
Raw File
Tip revision: 8b88b0daa5f47855a08719b294fa7cf7129e0c79 authored by Dennis Bader on 04 August 2023, 13:33:49 UTC
Docs/general improvements (#1904)
Tip revision: 8b88b0d
.pre-commit-config.yaml
repos:
  - repo: https://github.com/psf/black
    rev: 22.3.0
    hooks:
      - id: black-jupyter
        language_version: python3

  - repo: https://github.com/PyCQA/flake8
    rev: 4.0.1
    hooks:
    -   id: flake8
        language_version: python3

  - repo: https://github.com/pycqa/isort
    rev: 5.11.5
    hooks:
      -  id: isort

  - repo: https://github.com/asottile/pyupgrade
    rev: v2.31.0
    hooks:
    -   id: pyupgrade
        args: ['--py37-plus']
back to top