Skip to content

Commit e549b20

Browse files
committed
CI: fix markdownlint
MarkdownLint v0.39.0 introduced a new rule regarding table formatting. While the principle of the rule is actually quite nice, it doesn't play nice with some of the tables in the PHPCS 4.0 upgrade guides, and while those files could, of course, be updated, that wouldn't improve the maintainability of the tables. So, for now, I'm electing to ignore the new rule (`MD060`). Refs: * https://github.com/DavidAnson/markdownlint/blob/v0.39.0/CHANGELOG.md#0390 * https://github.com/DavidAnson/markdownlint/blob/main/doc/md060.md
1 parent 2b85480 commit e549b20

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.markdownlint-cli2.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ config:
4343
MD036: false
4444
# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading.
4545
MD041: false
46+
# MD060/table-column-style - Table column style.
47+
MD060: false
4648

4749
##############################
4850
# Customize a few other rules.

0 commit comments

Comments
 (0)