.oxfmtrc.json pointed sortTailwindcss.stylesheet at app/assets/css/main.css, a path that moved to layers/ui/ in the layers refactor. oxfmt crashed on it rather than reporting, so pnpm fmt:check had never completed.
Fixed in ee1d8f1. With the path corrected the command runs and reports 53 files with formatting drift, all pre-existing.
Not urgent: CI does not run fmt:check (only lint, lint:i18n, test:coverage, typecheck, build), and the forge pre-commit hook formats files as they are touched.
Deliberately left out of the launch work so a 53-file mechanical reformat would not bury a reviewable diff.
pnpm fmt # applies
pnpm fmt:check # verifies
Worth doing as its own commit, then consider adding fmt:check to CI so it cannot drift again.
.oxfmtrc.jsonpointedsortTailwindcss.stylesheetatapp/assets/css/main.css, a path that moved tolayers/ui/in the layers refactor. oxfmt crashed on it rather than reporting, sopnpm fmt:checkhad never completed.Fixed in
ee1d8f1. With the path corrected the command runs and reports 53 files with formatting drift, all pre-existing.Not urgent: CI does not run
fmt:check(onlylint,lint:i18n,test:coverage,typecheck,build), and the forge pre-commit hook formats files as they are touched.Deliberately left out of the launch work so a 53-file mechanical reformat would not bury a reviewable diff.
Worth doing as its own commit, then consider adding
fmt:checkto CI so it cannot drift again.