Fix markdownlint config: use .markdownlint-cli2.jsonc file

The inline config parameter was not supported by markdownlint-cli2-action.
Move config to a dedicated .markdownlint-cli2.jsonc file instead.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Alexa Amundson
2026-02-20 17:37:56 -06:00
parent dcce8d9135
commit 6d245a204e
2 changed files with 7 additions and 7 deletions

View File

@@ -17,13 +17,6 @@ jobs:
uses: DavidAnson/markdownlint-cli2-action@v19 uses: DavidAnson/markdownlint-cli2-action@v19
with: with:
globs: "**/*.md" globs: "**/*.md"
config: |
{
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
}
links: links:
name: Check Links name: Check Links

7
.markdownlint-cli2.jsonc Normal file
View File

@@ -0,0 +1,7 @@
// Copyright (c) 2025-2026 BlackRoad OS, Inc. All Rights Reserved.
{
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
}