⚙️ [Maintenance]: Fix Docs Lint pipeline (MD060 tables + codespell false positives)#52
Merged
Marius Storhaug (MariusStorhaug) merged 2 commits intoJul 1, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Docs pipeline's
Lintjob (super-linter) is green again. It had been failing onmainsince the Continuous-X / DevOps guides were added, and every pull request inherited the failure because super-linter validates the entire codebase.Fixed: Docs Lint pipeline passes again
Two independent problems in the guide files added by 99d9d5a were blocking the job:
continuous-x-and-continuous-ai.mdanddevops-reference.md. The tables mixed padded header/body cells (| # |) with compact delimiter rows (|---|). Fixed by padding the delimiter rows so each table uses one consistent style — the rendered tables are unchanged.ignore-words-listrather than "corrected":Skelton— the surname of Matthew Skelton, co-author of Team Topologies.erformance— an artifact of the SPACE-framework acronym**P**erformance(Satisfaction, Performance, Activity, Communication, Efficiency).Technical Details
src/docs/Ways-of-Working/continuous-x-and-continuous-ai.md,src/docs/Ways-of-Working/devops-reference.md: delimiter rows padded (rows 10, 23, 76, 85 and 12, 60). Verified with markdownlint-cli2 (markdownlint v0.41.0) against.github/linters/.markdown-lint.yml— 0 errors..github/linters/.codespellrc:ignore-words-listextended withskelton,erformance(alongside the existingafterall). Verified with codespell — 0 errors.This follows Option A from the issue (reformat the tables), plus the codespell false-positive handling needed to actually turn the
Lintjob green.Related issues