aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pre-commit-config.yaml
blob: 96d0261ff53b88e4ffeba92a19608e3dd6d2967e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
repos:
  - repo: https://github.com/astral-sh/ruff-pre-commit
    rev: v0.14.5
    hooks:
      - id: ruff
      - id: ruff-format
        args: ["--check"]
  - repo: https://github.com/pre-commit/mirrors-mypy
    rev: "v1.18.2"
    hooks:
      - id: mypy
        additional_dependencies:
          - "numpy"
          - "types-PyYAML"
          - "types-python-dateutil"
          - "types-requests"
          - "types-dateparser"
          - "datasets"