CoolFace
Apppublic

hard56961/cncnc

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
.pre-commit-config.yaml25 linesDownload Raw Back to root
1repos:2  - repo: https://github.com/asottile/reorder-python-imports.git3    rev: v3.8.34    hooks:5      - id: reorder-python-imports6        name: Reorder Python imports7        types: [file, python]8  - repo: https://github.com/psf/black.git9    rev: 22.8.010    hooks:11      - id: black12        additional_dependencies: ['click==8.0.4']13        args: [--line-length=120]14        types: [file, python]15  - repo: https://github.com/pre-commit/pre-commit-hooks.git16    rev: v4.3.017    hooks:18      - id: check-byte-order-marker19        types: [file, python]20      - id: trailing-whitespace21        types: [file, python]22      - id: end-of-file-fixer23        types: [file, python]24 25