CoolFace
Apppublic

hysts-debug/dataframe-latex-markdown

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
.pre-commit-config.yaml47 linesDownload Raw Back to root
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.12.024  hooks:25    - id: isort26- repo: https://github.com/pre-commit/mirrors-mypy27  rev: v0.99128  hooks:29    - id: mypy30      args: ['--ignore-missing-imports']31      additional_dependencies: ['types-python-slugify']32- repo: https://github.com/google/yapf33  rev: v0.32.034  hooks:35  - id: yapf36    args: ['--parallel', '--in-place']37- repo: https://github.com/kynan/nbstripout38  rev: 0.6.039  hooks:40    - id: nbstripout41      args: ['--extra-keys', 'metadata.interpreter metadata.kernelspec cell.metadata.pycharm']42- repo: https://github.com/nbQA-dev/nbQA43  rev: 1.7.044  hooks:45    - id: nbqa-isort46    - id: nbqa-yapf47