Spaces:
Runtime error
Runtime error
repos: | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v4.4.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.12.0 | |
hooks: | |
- id: isort | |
args: ["--profile=black"] | |
- repo: https://github.com/pre-commit/mirrors-mypy | |
rev: v1.5.1 | |
hooks: | |
- id: mypy | |
args: ['--ignore-missing-imports'] | |
additional_dependencies: ['types-python-slugify', 'types-requests', 'types-PyYAML'] | |
- repo: https://github.com/psf/black | |
rev: 23.7.0 | |
hooks: | |
- id: black | |
language_version: python3.10 | |
args: ['--line-length=119'] | |
- repo: https://github.com/kynan/nbstripout | |
rev: 0.6.1 | |
hooks: | |
- id: nbstripout | |
args: ['--extra-keys', 'metadata.interpreter metadata.kernelspec cell.metadata.pycharm'] | |
- repo: https://github.com/nbQA-dev/nbQA | |
rev: 1.7.0 | |
hooks: | |
- id: nbqa-black | |
- id: nbqa-pyupgrade | |
args: ["--py37-plus"] | |
- id: nbqa-isort | |
args: ["--float-to-top"] | |