robinjhuang/custom-diffusion
0
1repos:2- repo: https://github.com/pre-commit/pre-commit-hooks3 rev: v4.2.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: double-quote-string-fixer12 - id: end-of-file-fixer13 - id: mixed-line-ending14 args: ['--fix=lf']15 - id: requirements-txt-fixer16 - id: trailing-whitespace17- repo: https://github.com/myint/docformatter18 rev: v1.419 hooks:20 - id: docformatter21 args: ['--in-place']22- repo: https://github.com/pycqa/isort23 rev: 5.10.124 hooks:25 - id: isort26- repo: https://github.com/pre-commit/mirrors-mypy27 rev: v0.99128 hooks:29 - id: mypy30 args: ['--ignore-missing-imports']31- repo: https://github.com/google/yapf32 rev: v0.32.033 hooks:34 - id: yapf35 args: ['--parallel', '--in-place']36 