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 26 27 28 29 30 31 32 33 34 35 36
|
repos:
- hooks:
- args:
- --remove-all-unused-imports
- --in-place
id: autoflake
repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
- hooks:
- id: isort
repo: https://github.com/timothycrosley/isort
rev: 5.13.2
- hooks:
- id: black
repo: https://github.com/psf/black
rev: 24.10.0
- hooks:
- id: flake8
exclude: (^docs/|^examples/|^notebooks/|^tests/)
repo: https://github.com/PyCQA/flake8
rev: 7.1.1
- hooks:
- id: pyright
name: pyright
entry: pyright
language: node
pass_filenames: false
types: [python]
additional_dependencies: ["pyright@1.1.388"]
repo: local
- hooks:
- id: mypy
exclude: (^docs/|^examples/|^notebooks/|^tests/|^reactivex/operators/_\w.*\.py$)
repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
|