123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- exclude: |
- (?x)(
- ^superpoint_superglue_deployment/superpoint.py |
- ^superpoint_superglue_deployment/superglue.py
- )
- repos:
- - repo: https://github.com/pycqa/flake8
- rev: 4.0.1
- hooks:
- - id: flake8
- additional_dependencies: [pep8-naming]
- - repo: https://github.com/psf/black
- rev: 22.6.0
- hooks:
- - id: black
- language_version: python3
- - repo: https://github.com/pycqa/isort
- rev: 5.12.0
- hooks:
- - id: isort
- - repo: https://github.com/pre-commit/mirrors-mypy
- rev: v0.961
- hooks:
- - id: mypy
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.3.0
- hooks:
- - id: end-of-file-fixer
- - id: trailing-whitespace
- - repo: https://github.com/pre-commit/mirrors-prettier
- rev: v2.7.1
- hooks:
- - id: prettier
- types_or: [json, markdown, yaml]
- - repo: https://github.com/lovesegfault/beautysh
- rev: v6.2.1
- hooks:
- - id: beautysh
|