Revision 12e1f489ac3578360fa66152816d0b5d63e90609 authored by jax authors on 21 October 2022, 22:20:55 UTC, committed by jax authors on 22 October 2022, 16:51:25 UTC
1 parent b07c586
Raw File
.pre-commit-config.yaml
# Install the pre-commit hooks below with
# 'pre-commit install'

# Auto-update the version of the hooks with
# 'pre-commit autoupdate'

# Run the hooks on all files with
# 'pre-commit run --all'

repos:
- repo: https://gitlab.com/pycqa/flake8
  rev: '5.0.4'
  hooks:
  - id: flake8

- repo: https://github.com/pre-commit/mirrors-mypy
  rev: 'v0.982'
  hooks:
  - id: mypy
    files: (jax/|tests/typing_test\.py)
    exclude: jax/_src/basearray.py  # Use pyi instead
    additional_dependencies: [types-requests==2.28.11, jaxlib==0.3.22]

- repo: https://github.com/mwouts/jupytext
  rev: v1.14.1
  hooks:
  - id: jupytext
    args: [--sync]
back to top