repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.4.0 hooks: - id: check-added-large-files - id: check-byte-order-marker - id: check-json - id: check-merge-conflict - id: check-toml - id: debug-statements - id: detect-private-key - repo: local hooks: - id: ruff-format name: Auto formatting code with "ruff" entry: .venv/bin/ruff format ordr3 tests language: system pass_filenames: false - id: ruff name: Linting code with "ruff" entry: .venv/bin/ruff check ordr3 tests language: system pass_filenames: false - id: pytest name: Running tests with "pytest" entry: .venv/bin/pytest tests language: system pass_filenames: false