CoolFace
Apppublic

NativeAngels/LTX-Video-Playground

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
.pre-commit-config.yaml16 linesDownload Raw Back to root
1repos:2  - repo: https://github.com/astral-sh/ruff-pre-commit3    # Ruff version.4    rev: v0.2.25    hooks:6      # Run the linter.7      - id: ruff8        args: [--fix]  # Automatically fix issues if possible.9        types: [python]  # Ensure it only runs on .py files.10 11  - repo: https://github.com/psf/black12    rev: 24.2.0  # Specify the version of Black you want13    hooks:14      - id: black15        name: Black code formatter16        language_version: python3  # Use the Python version you're targeting (e.g., 3.10)