fix: disable MD025 for frontmatter and H1 compatibility

This commit is contained in:
gandalf-the-greybeard[bot]
2026-03-11 01:55:12 +00:00
parent c6a38da28f
commit f6a2a06729
+2 -1
View File
@@ -1,6 +1,7 @@
{
"config": {
"MD013": false, // Disable line length rule as it's often too restrictive for docs
"MD041": false // Disable first-line heading rule (frontmatter often comes first)
"MD041": false, // Disable first-line heading rule (frontmatter often comes first)
"MD025": false // Allow frontmatter title and H1
}
}