make fmt does not format Markdown, so the org prettier settings are unenforced here #215
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Found while landing #210.
script/fmtisgofmt -s -w .plusgoimports, and there is no prettier config anywhere in the tree. Org policy is that Markdown changes are formatted with the repo's own settings (prettier, 4-space tabs,proseWrap: always) and that unformatted Markdown is never committed — but nothing in this repo enforces that.The practical effect:
make fmtandmake fmt-checkboth pass on any Markdown, however it is wrapped. They pass vacuously. The 162-line README section added by #210 was hand-wrapped to the file's existing 72-column width and checked by eye, which is exactly the manual step the formatter is supposed to remove.Definition of done:
proseWrap: always)script/fmtformats Markdown as well as Go;script/fmt-checkfails on unformatted Markdown