Skip to content

Commit 6fba2ae

Browse files
Copilotneilime
andcommitted
fix: disable MD060 rule in helm-docs default markdownlint config
MD060 (table-column-style) conflicts with Prettier's table formatting and cannot be auto-fixed. This rule requires aligned table pipes, but Prettier removes alignment padding when formatting markdown. Co-authored-by: neilime <314088+neilime@users.noreply.github.com>
1 parent 1a1e993 commit 6fba2ae

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

actions/helm/generate-docs/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ runs:
115115
const defaultConfig = {
116116
"default": true,
117117
"line-length": false,
118+
// Disable MD060 because Prettier formats tables without aligned pipes,
119+
// and markdownlint cannot auto-fix this rule
120+
"MD060": false,
118121
"outputFormatters": [
119122
[
120123
"markdownlint-cli2-formatter-template",

0 commit comments

Comments
 (0)