Skip to content

Commit 262a25a

Browse files
committed
chore: update markdownlintignore and pre-commit config
Add `.github/` to `.markdownlintignore` to exclude GitHub-specific files from markdown linting, as they are not relevant for content validation. Integrate `markdownlint` into the pre-commit configuration to ensure consistent markdown style and formatting across the project. This addition helps maintain code quality and readability by automatically checking markdown files before commits.
1 parent f519a6d commit 262a25a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.markdownlintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ logs/
2727
# Exclude dependencies and generated files
2828
prisma/
2929
typings/
30+
31+
.github/

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ repos:
3131
rev: v1.7.7
3232
hooks:
3333
- id: actionlint
34+
- repo: https://github.com/igorshubovych/markdownlint-cli
35+
rev: v0.45.0
36+
hooks:
37+
- id: markdownlint
3438
- repo: https://github.com/asottile/pyupgrade
3539
rev: v3.20.0
3640
hooks:

0 commit comments

Comments
 (0)