|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.6.0
|
|
hooks:
|
|
- id: check-executables-have-shebangs
|
|
- id: check-json
|
|
- id: check-merge-conflict
|
|
- id: check-shebang-scripts-are-executable
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
args: ["--fix=lf"]
|
|
- id: requirements-txt-fixer
|
|
- id: trailing-whitespace
|
|
- repo: https://github.com/myint/docformatter
|
|
rev: v1.7.5
|
|
hooks:
|
|
- id: docformatter
|
|
args: ["--in-place"]
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.13.2
|
|
hooks:
|
|
- id: isort
|
|
args: ["--profile", "black"]
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.9.0
|
|
hooks:
|
|
- id: mypy
|
|
args: ["--ignore-missing-imports"]
|
|
additional_dependencies:
|
|
[
|
|
"types-python-slugify",
|
|
"types-requests",
|
|
"types-PyYAML",
|
|
"types-pytz",
|
|
]
|
|
- repo: https://github.com/psf/black
|
|
rev: 24.4.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.10
|
|
args: ["--line-length", "119"]
|
|
- repo: https://github.com/kynan/nbstripout
|
|
rev: 0.7.1
|
|
hooks:
|
|
- id: nbstripout
|
|
args:
|
|
[
|
|
"--extra-keys",
|
|
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
|
]
|
|
- repo: https://github.com/nbQA-dev/nbQA
|
|
rev: 1.8.5
|
|
hooks:
|
|
- id: nbqa-black
|
|
- id: nbqa-pyupgrade
|
|
args: ["--py37-plus"]
|
|
- id: nbqa-isort
|
|
args: ["--float-to-top"]
|
|
|