Spaces:
Running
on
Zero
Running
on
Zero
| repos: | |
| - repo: https://github.com/pre-commit/pre-commit-hooks | |
| rev: v5.0.0 | |
| hooks: | |
| - id: check-added-large-files | |
| args: ['--maxkb=850'] # Set custom size limit (1MB) - id: check-ast | |
| - id: check-case-conflict | |
| - id: check-json | |
| - id: check-merge-conflict | |
| - id: check-toml | |
| - id: end-of-file-fixer | |
| - repo: https://github.com/astral-sh/ruff-pre-commit | |
| # Ruff version. | |
| rev: v0.11.8 | |
| hooks: | |
| - id: ruff | |
| - repo: https://github.com/pycqa/isort | |
| rev: 6.0.1 | |
| hooks: | |
| - id: isort | |
| args: ["--profile", "black"] | |
| - repo: https://github.com/asottile/pyupgrade | |
| rev: v3.19.1 | |
| hooks: | |
| - id: pyupgrade | |
| args: ["--py310-plus"] | |
| - repo: https://github.com/psf/black | |
| rev: 25.1.0 | |
| hooks: | |
| - id: black | |
| args: | |
| - --line-length=120 | |
| - repo: https://github.com/jorisroovers/gitlint | |
| rev: v0.19.1 | |
| hooks: | |
| - id: gitlint | |
| name: gitlint | |
| language: python | |
| entry: gitlint | |
| args: [--staged, --msg-filename] | |
| stages: [commit-msg] | |
| - repo: https://github.com/python-poetry/poetry | |
| rev: '1.8.0' | |
| hooks: | |
| - id: poetry-check | |
| - id: poetry-lock | |
| args: [--no-update] | |
| language_version: "3.10" | |
| - id: poetry-export | |
| name: poetry export for base requirements | |
| args: [-f, requirements.txt, -o, requirements.txt, -n, --only=main, --without-hashes] | |