ci: autoupdate_commit_msg: "chore: update pre-commit hooks" autofix_commit_msg: "style: pre-commit fixes" autoupdate_schedule: monthly repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: check-added-large-files - id: check-case-conflict - id: check-merge-conflict - id: check-symlinks - id: check-yaml - id: debug-statements - id: end-of-file-fixer - id: mixed-line-ending - id: requirements-txt-fixer - id: trailing-whitespace - repo: https://github.com/kynan/nbstripout rev: 0.8.0 hooks: - id: nbstripout types_or: [jupyter] - repo: https://github.com/pre-commit/mirrors-clang-format rev: v19.1.3 hooks: - id: clang-format types_or: [c++, c, cuda] - repo: https://github.com/psf/black-pre-commit-mirror rev: 24.10.0 # Use the latest stable version hooks: - id: black-jupyter - repo: https://github.com/pycqa/isort rev: 5.13.2 hooks: - id: isort name: isort (python) - repo: https://github.com/Lucas-C/pre-commit-hooks rev: "v1.5.5" hooks: - id: remove-tabs - repo: https://github.com/charliermarsh/ruff-pre-commit rev: v0.7.4 # Use the latest version hooks: - id: ruff args: ["--fix", "--show-fixes"] - repo: https://github.com/cheshirekow/cmake-format-precommit rev: v0.6.13 hooks: - id: cmake-format types: [file] files: (\.cmake|CMakeLists.txt)(.in)?$ # - repo: https://github.com/codespell-project/codespell # rev: v # hooks: # - id: codespell # args: ["-L", "sur,falsy,gaus,hist,lsit,nd,parms,retur,ue,ba,claus,fo"] # - repo: https://github.com/pre-commit/pygrep-hooks # rev: v # hooks: # - id: rst-backticks # - id: rst-directive-colons # - id: rst-inline-touching-normal # - repo: https://github.com/shellcheck-py/shellcheck-py # rev: v0.9.0.5 # hooks: # - id: shellcheck # stages: [manual]