Format all Markdown with Prettier (repo-wide lint fix) - #214
Open
rrrutledge wants to merge 1 commit into
Open
Conversation
✅ Deploy Preview for bejewelled-pothos-847ddc ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
rrrutledge
marked this pull request as ready for review
July 30, 2026 20:53
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.
What
Run Prettier across every Markdown file so the repo is fully formatting-clean.
The
lintCI step (prettier --check *.md **/*.md) has been failing on any PR that touches Markdown, because a set of existing files predates the Prettier convention. This normalizes all of them in one pass.Why it looked like only a few files
The
**/*.mdglob in the lint script runs under bash withoutglobstar, so CI only ever inspected the top two directory levels. Several nested files (docs/maturity-matrix/,docs/open-roles/,.github/ISSUE_TEMPLATE/,docs/governance/) were unformatted but never surfaced. This PR formats the whole tree, so the repo stays clean no matter how the glob is expanded.Scope
Formatting only. No prose, links, or content changed - only line wrapping, list markers, table alignment, and trailing whitespace. Produced with the repo's pinned Prettier (
^2.4.1) vianpm ci+npm run fmt.Relationship to #213
#213 formats
docs/finos_innersource_sig_charter.mdso that content PR's own lint passes. This PR is the general cleanup for the remaining files; whichever merges first, the other's overlap on that file collapses to a no-op.