2021-09-16 01:46:35 +03:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pycqa/isort
|
2022-01-30 17:28:51 +03:00
|
|
|
rev: 5.10.1
|
2021-09-16 01:46:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
additional_dependencies: ["colorama>=0.4.3"]
|
|
|
|
|
|
|
|
- repo: https://github.com/psf/black
|
2022-03-30 15:53:50 +03:00
|
|
|
rev: 22.3.0
|
2021-09-16 01:46:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2021-10-27 00:26:58 +03:00
|
|
|
args: [--skip-magic-trailing-comma]
|
2021-09-16 01:46:35 +03:00
|
|
|
|
2022-03-30 19:29:39 +03:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2022-03-30 20:14:56 +03:00
|
|
|
rev: v2.31.1
|
2022-03-30 19:29:39 +03:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args: [--py37-plus]
|
|
|
|
|
2021-09-16 01:46:35 +03:00
|
|
|
- repo: https://gitlab.com/pycqa/flake8.git
|
2022-01-30 17:28:51 +03:00
|
|
|
rev: 3.9.2
|
2021-09-16 01:46:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
|
|
|
|
|
|
|
- repo: https://github.com/pycqa/pydocstyle
|
2022-01-30 17:28:51 +03:00
|
|
|
rev: 6.1.1
|
2021-09-16 01:46:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: pydocstyle
|
2021-10-23 10:07:38 +03:00
|
|
|
exclude: (tests|docs|experiments)
|
2021-09-16 01:46:35 +03:00
|
|
|
additional_dependencies: ["toml"]
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2022-03-30 15:53:50 +03:00
|
|
|
rev: v0.942
|
2021-09-16 01:46:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2021-10-23 10:07:38 +03:00
|
|
|
args: [--strict, --ignore-missing-imports, --show-error-codes]
|
2022-03-30 15:53:50 +03:00
|
|
|
additional_dependencies: [torch>=1.11, torchmetrics>=0.7, pytorch-lightning>=1.6, pytest>=6, omegaconf>=2.1, kornia>=0.6, numpy>=1.22.0]
|
2021-09-16 01:46:35 +03:00
|
|
|
exclude: (build|data|dist|logo|logs|output)/
|