From 2a3ea2df803c63ada257322a2e35fee22048f31d Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 29 Nov 2025 13:15:37 +0100 Subject: [PATCH] CI: fix markdownlint MarkdownLint v0.39.0 introduced a new rules regarding table formatting. While the principle of the rule is actually quite nice, it doesn't play nice with the `bug_report.md` template file, and while that file could, of course, be updated, that wouldn't improve the user-friendliness of the form. 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 --- .markdownlint-cli2.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 511a12dd47..a367aaa5dc 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -38,6 +38,8 @@ config: MD031: false # MD032/blanks-around-lists - Lists should be surrounded by blank lines. MD032: false + # MD060/table-column-style - Table column style. + MD060: false ############################## # Customize a few other rules.