From 8840bd874ded39ab86a4fc3d4f0b41fe0c0cc59c Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 11 May 2026 18:33:02 +0000 Subject: [PATCH] Fix: Disable MD004 unordered list style rule in markdownlint - Skill files use dashes for unordered lists, but markdownlint expects asterisks - Disable MD004 to allow both dash and asterisk styles - Aligns with existing exceptions for MD013, MD036, and MD060 Co-Authored-By: Paperclip --- .markdownlint.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.markdownlint.yaml b/.markdownlint.yaml index fe072ce..25d6b1a 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -10,3 +10,6 @@ MD036: false # Compact table style is allowed MD060: false + +# Unordered list style (dash vs asterisk) is flexible +MD004: false