CoolFace
Apppublic

multimolecule/polyadenylation

sourceHugging Faceagpl-3.0updated 4mo agoView on Hugging Face
0likes
.pre-commit-config.yaml52 linesDownload Raw Back to root
1default_language_version:2  python: python33repos:4  - repo: https://github.com/PSF/black5    rev: 25.12.06    hooks:7      - id: black8        args: [--safe, --quiet, --line-length=120]9  - repo: https://github.com/PyCQA/isort10    rev: 7.0.011    hooks:12      - id: isort13        name: isort14        args: [--profile=black, --line-length=120]15  - repo: https://github.com/PyCQA/flake816    rev: 7.3.017    hooks:18      - id: flake819        args: [--max-line-length=120]20        additional_dependencies:21          - flake8-bugbear22          - flake8-comprehensions23          - flake8-simplify24  - repo: https://github.com/asottile/pyupgrade25    rev: v3.21.226    hooks:27      - id: pyupgrade28        args: [--keep-runtime-typing]29  - repo: https://github.com/codespell-project/codespell30    rev: v2.4.131    hooks:32      - id: codespell33        args: [--ignore-regex=(?i)aparent]34  - repo: https://github.com/pre-commit/pre-commit-hooks35    rev: v6.0.036    hooks:37      - id: check-added-large-files38      - id: check-ast39      - id: check-builtin-literals40      - id: check-case-conflict41      - id: check-docstring-first42      - id: check-json43      - id: check-toml44      - id: check-yaml45      - id: debug-statements46      - id: end-of-file-fixer47      - id: fix-byte-order-marker48      - id: mixed-line-ending49        args: ["--fix=lf"]50      - id: requirements-txt-fixer51      - id: trailing-whitespace52