https://github.com/unit8co/darts
Raw File
Tip revision: b41be28272c180c8812ff3355aef5c995950c82d authored by Dennis Bader on 20 September 2024, 16:29:44 UTC
Feat/metrics quantiles (#2530)
Tip revision: b41be28
.pre-commit-config.yaml
default_language_version:
  python: python3

ci:
  autofix_prs: true
  autoupdate_commit_msg: "[pre-commit.ci] pre-commit suggestions"
  autoupdate_schedule: quarterly
  # submodules: true

repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.6.0
    hooks:
      - id: end-of-file-fixer
        exclude_types: [csv]
      - id: trailing-whitespace
      - id: check-json
      - id: check-yaml
        exclude: "conda_recipe/darts/meta.yaml"
      - id: check-toml
      - id: detect-private-key

  - repo: https://github.com/astral-sh/ruff-pre-commit
    rev: v0.3.5
    hooks:
      # try to fix what is possible
      - id: ruff
        args: ["--fix"]
      # perform formatting updates
      - id: ruff-format
      # validate if all is fine with preview mode
      - id: ruff
back to top