ctheodoris/Geneformer
3142.2k
1# See https://pre-commit.com for more information2# See https://pre-commit.com/hooks.html for more hooks3repos:4- repo: https://github.com/pre-commit/pre-commit-hooks5 rev: v3.2.06 hooks:7 - id: trailing-whitespace8 - id: end-of-file-fixer9 - id: check-yaml10 - id: check-added-large-files11 - id: check-merge-conflict12 - id: mixed-line-ending13 - id: check-docstring-first14- repo: https://github.com/pycqa/isort15 rev: 5.12.016 hooks:17 - id: isort18 args: ["--profile", "black"]19- repo: https://github.com/astral-sh/ruff-pre-commit20 # Ruff version.21 rev: v0.1.422 hooks:23 # Run the Ruff linter.24 - id: ruff25 # Run the Ruff formatter.26 - id: ruff-format27 