repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-json - id: check-toml - id: check-added-large-files - id: check-merge-conflict - id: check-executables-have-shebangs - id: check-shebang-scripts-are-executable - repo: https://github.com/pycqa/flake8 rev: 7.3.0 hooks: - id: flake8 - repo: https://github.com/codespell-project/codespell rev: v2.4.1 hooks: - id: codespell args: ["-w"] - repo: https://github.com/psf/black rev: 26.1.0 hooks: - id: black - repo: https://github.com/pycqa/isort rev: 7.0.0 hooks: - id: isort - repo: local hooks: - id: run-unit-tests name: run unit tests entry: make unit-tests language: system pass_filenames: false