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:
7
.github/workflows/validate.yml
vendored
7
.github/workflows/validate.yml
vendored
@@ -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
7
.markdownlint-cli2.jsonc
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
// Copyright (c) 2025-2026 BlackRoad OS, Inc. All Rights Reserved.
|
||||||
|
{
|
||||||
|
"default": true,
|
||||||
|
"MD013": false,
|
||||||
|
"MD033": false,
|
||||||
|
"MD041": false
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user