From 79fb64954cd033a93c2072d78d58d2ca56224b5a Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Thu, 30 Jul 2026 06:06:12 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20markdownlint=20config=20=E2=80=94?= =?UTF-8?q?=20use=20config=20file=20instead=20of=20inline=20JSON?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .markdownlint-cli2.jsonc with MD013/MD033 disabled - Remove inline config param from ci.yml (action treats it as file path) --- .github/workflows/ci.yml | 1 - .markdownlint-cli2.jsonc | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .markdownlint-cli2.jsonc diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a1708b..2f9cf13 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,6 @@ jobs: uses: DavidAnson/markdownlint-cli2-action@v19 with: globs: "**/*.md" - config: '{"MD013": false, "MD033": false}' - name: Check YAML formatting uses: ibiqlik/action-yamllint@v3 with: diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 0000000..26593a2 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,4 @@ +{ + "MD013": false, + "MD033": false +}