https://github.com/unit8co/darts
Raw File
Tip revision: 7e245cb3dcb088645d19708d564a8ad971d4bcf9 authored by Julien Herzen on 07 July 2022, 12:25:48 UTC
less strict requirement on ipython
Tip revision: 7e245cb
.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.10.1
    hooks:
      -  id: isort

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