CoolFace
Apppublic

hysts-debug/dataframe-markdown-list

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
.pre-commit-config.yaml56 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:32          ["types-python-slugify", "types-requests", "types-PyYAML"]33  - repo: https://github.com/psf/black34    rev: 23.9.135    hooks:36      - id: black37        language_version: python3.1038        args: ["--line-length", "119"]39  - repo: https://github.com/kynan/nbstripout40    rev: 0.6.141    hooks:42      - id: nbstripout43        args:44          [45            "--extra-keys",46            "metadata.interpreter metadata.kernelspec cell.metadata.pycharm",47          ]48  - repo: https://github.com/nbQA-dev/nbQA49    rev: 1.7.050    hooks:51      - id: nbqa-black52      - id: nbqa-pyupgrade53        args: ["--py37-plus"]54      - id: nbqa-isort55        args: ["--float-to-top"]56