CoolFace
Apppublic

iccv23-diffusers-demo/zeroscope-v2

sourceHugging Facemitupdated 3y agoView on Hugging Face
1likes
.pre-commit-config.yaml51 linesDownload Raw Back to root
1repos:2- repo: https://github.com/pre-commit/pre-commit-hooks3  rev: v4.4.04  hooks:5  - id: check-executables-have-shebangs6  - id: check-json7  - id: check-merge-conflict8  - id: check-shebang-scripts-are-executable9  - id: check-toml10  - id: check-yaml11  - id: end-of-file-fixer12  - id: mixed-line-ending13    args: ["--fix=lf"]14  - id: requirements-txt-fixer15  - id: trailing-whitespace16- repo: https://github.com/myint/docformatter17  rev: v1.7.518  hooks:19  - id: docformatter20    args: ["--in-place"]21- repo: https://github.com/pycqa/isort22  rev: 5.12.023  hooks:24    - id: isort25      args: ["--profile", "black"]26- repo: https://github.com/pre-commit/mirrors-mypy27  rev: v1.5.128  hooks:29    - id: mypy30      args: ["--ignore-missing-imports"]31      additional_dependencies: ["types-python-slugify", "types-requests", "types-PyYAML"]32- repo: https://github.com/psf/black33  rev: 23.9.134  hooks:35    - id: black36      language_version: python3.1037      args: ["--line-length", "119"]38- repo: https://github.com/kynan/nbstripout39  rev: 0.6.140  hooks:41    - id: nbstripout42      args: ["--extra-keys", "metadata.interpreter metadata.kernelspec cell.metadata.pycharm"]43- repo: https://github.com/nbQA-dev/nbQA44  rev: 1.7.045  hooks:46    - id: nbqa-black47    - id: nbqa-pyupgrade48      args: ["--py37-plus"]49    - id: nbqa-isort50      args: ["--float-to-top"]51