aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pre-commit-config.yaml
blob: 520b51e86941ff35641a4a1e7926dde5b867dcec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
repos:
  - repo: https://github.com/psf/black
    rev: 25.1.0
    hooks:
      - id: black
        args: ['--check']
  - repo: https://github.com/pycqa/isort
    rev: 6.0.1
    hooks:
      - id: isort
        args: ['--check-only']
  - repo: https://github.com/pre-commit/mirrors-mypy
    rev: 'v1.16.0'
    hooks:
      - id: mypy
        additional_dependencies:
          - 'numpy'
          - 'types-PyYAML'
          - 'types-python-dateutil'
          - 'types-requests'
          - 'types-setuptools'
          - 'types-frozendict'
          - 'types-redis'
          - 'types-pytz'
          - 'types-Markdown'