Skip to content

Commit ea5f2f5

Browse files
tarun-etikalaclaude
andcommitted
chore: remove markdownlint from pre-commit, handled in PR #91
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 57150d4 commit ea5f2f5

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

.pre-commit-config.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,6 @@ repos:
2121
- --subject-max-length=72
2222
- --allow-breaking
2323

24-
# Keep rev in sync with markdownlint-cli2-action version in .github/workflows/code-quality.yml
25-
- repo: https://github.com/DavidAnson/markdownlint-cli2
26-
rev: v0.22.1
27-
hooks:
28-
- id: markdownlint-cli2
29-
args: [--fix]
30-
# Node 24.x breaks transitive dep ava; pin to LTS until ava supports Node 24
31-
language_version: "22.20.0"
32-
3324
- repo: https://github.com/rhysd/actionlint
3425
rev: v1.7.12
3526
hooks:

CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,17 @@ uv tool install pre-commit
2323
pre-commit install --install-hooks
2424
```
2525

26-
After this, every `git commit` will automatically run markdownlint, actionlint, and commit message validation.
26+
After this, every `git commit` will automatically run actionlint and commit message validation.
2727

2828
## Linting and formatting
2929

3030
This project uses [ruff](https://docs.astral.sh/ruff/) (Python), [markdownlint](https://github.com/DavidAnson/markdownlint) (Markdown), and [actionlint](https://github.com/rhysd/actionlint) (GitHub Actions workflows). All three run as blocking CI checks on every pull request via the `Code Quality` workflow.
3131

32-
Markdownlint and actionlint run automatically on every commit via pre-commit (see [Development setup](#development-setup)). To run them manually:
32+
Actionlint runs automatically on every commit via pre-commit (see [Development setup](#development-setup)). To run it manually:
3333

3434
```bash
35-
pre-commit run --all-files # all hooks
36-
pre-commit run markdownlint-cli2 --all-files # Markdown only (auto-fixes)
37-
pre-commit run actionlint --all-files # GitHub Actions workflows only
35+
pre-commit run --all-files # all hooks
36+
pre-commit run actionlint --all-files # GitHub Actions workflows only
3837
```
3938

4039
### Python (ruff)

0 commit comments

Comments
 (0)