Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 4 additions & 25 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
{
// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
"config": {
"default": true,
"MD003": {
"style": "atx"
},
"MD007": {
"indent": 2
},
"MD013": false,
"MD024": {
"siblings_only": true
},
"MD033": false,
"MD041": false,
"MD049": {
"style": "asterisk"
},
"MD050": {
"style": "asterisk"
}
},
"ignores": [
".genreleases/"
]
"default": true,
"MD013": { "lineLength": 80 },
"MD029": { "style": "ordered" },
"MD041": false
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The markdown linter configuration removes the "ignores" array that was previously excluding the ".genreleases/" directory from linting. If this directory contains generated markdown files that may not conform to linting rules, removing this ignore pattern could cause linting failures in CI/CD pipelines.

This issue also appears in the following locations of the same file:

  • line 1
  • line 1
Suggested change
"MD041": false
"MD041": false,
"ignores": [
".genreleases/"
]

Copilot uses AI. Check for mistakes.
}
Loading