CoolFace
Apppublic

HIST/ControlNet

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
.pre-commit-config.yaml38 linesDownload Raw Back to root
1exclude: patch2repos:3- repo: https://github.com/pre-commit/pre-commit-hooks4  rev: v4.2.05  hooks:6  - id: check-executables-have-shebangs7  - id: check-json8  - id: check-merge-conflict9  - id: check-shebang-scripts-are-executable10  - id: check-toml11  - id: check-yaml12  - id: double-quote-string-fixer13  - id: end-of-file-fixer14  - id: mixed-line-ending15    args: ['--fix=lf']16  - id: requirements-txt-fixer17  - id: trailing-whitespace18- repo: https://github.com/myint/docformatter19  rev: v1.420  hooks:21  - id: docformatter22    args: ['--in-place']23- repo: https://github.com/pycqa/isort24  rev: 5.12.025  hooks:26    - id: isort27- repo: https://github.com/pre-commit/mirrors-mypy28  rev: v0.99129  hooks:30    - id: mypy31      args: ['--ignore-missing-imports']32      additional_dependencies: ['types-python-slugify']33- repo: https://github.com/google/yapf34  rev: v0.32.035  hooks:36  - id: yapf37    args: ['--parallel', '--in-place']38