Skip to content

Check links in markdown files #323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 29, 2025
Prev Previous commit
Next Next commit
Add markdown-link-check to pre-commit
Signed-off-by: David Gardner <dagardner@nvidia.com>
  • Loading branch information
dagardner-nv committed May 15, 2025
commit 88ee1bd5f6a0ce65967bc38d91d9127259672470
9 changes: 9 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,31 @@ repos:
hooks:
- id: isort
args: ["--filter-files", "--settings-file=./pyproject.toml"]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
hooks:
- id: flake8
entry: pflake8
additional_dependencies: [pyproject-flake8]
args: ["--config=./pyproject.toml"]

- repo: https://github.com/google/yapf
rev: v0.43.0
hooks:
- id: yapf
args: ["-i", "--style", "./pyproject.toml"]

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.6.2
hooks:
- id: uv-lock

- repo: https://github.com/tcort/markdown-link-check
rev: v3.13.7
hooks:
- id: markdown-link-check
args: ["-q", "--config", "ci/markdown-link-check-config.json"]

default_language_version:
python: python3