Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,9 @@

// MD043/required-headings/required-headers - Required heading structure
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md043.md
"MD043": false
"MD043": false,

// MD059/descriptive-link-text - Link text should be descriptive
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md059.md
"MD059": false
}
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v5.0.0'
rev: 'v6.0.0'
hooks:
- id: check-merge-conflict
- id: check-toml
Expand All @@ -18,22 +18,22 @@ repos:
- --no-sort-keys
- id: trailing-whitespace
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: 'v0.17.2'
rev: 'v0.23.1'
hooks:
- id: markdownlint-cli2
- repo: https://github.com/psf/black
rev: '25.1.0'
- repo: https://github.com/psf/black-pre-commit-mirror
rev: '26.5.1'
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.15.0'
rev: 'v2.3.0'
hooks:
- id: mypy
exclude: '^(?:(?!src).)*$'
additional_dependencies:
- types-requests
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.9.10'
rev: 'v0.15.22'
hooks:
- id: ruff
args:
Expand Down
Loading