🚀 Feature: Replace format:write with format --write #762
Labels
good first issue
Good for newcomers, please hop on!
status: accepting prs
Please, send a pull request to resolve this!
type: feature
New enhancement or request
Milestone
Bug Report Checklist
main
branch of the repository.Overview
Right now, this repo references two ways of applying formatting to files:
pnpm format --write
: using theformat
script defined in thepackage.json
, with a--write
flagpnpm format:write
: using theformat:write
script defined in thepackage.json
, which runs `pnpm format --writeThere's no need to have both. Other auto-fixable CLI scripts such as
lint
don't have a dedicated:write
. Let's removeformat:write
and replace it withformat --write
.Additional Info
You'll want to find-and-replace in all files to catch all references to
format:write
.The text was updated successfully, but these errors were encountered: