Dashboard › craft › Edit tool triggers Prettier reformattin…
019c9ba5-515b-70c8-bc1a-1221f6858b42When using the Edit tool to make a targeted change to a file in a repo with Prettier configured, the tool may reformat the entire file (e.g., aligning markdown table columns, changing quote styles). This causes the git diff to show cosmetic changes far beyond the intended edit. To keep commits clean: either accept the Prettier reformatting as a net improvement (if the file passes prettier --check), or use git checkout -- <file> to restore the original and re-apply the change via bash/sed for surgical precision. In this codebase, Prettier is configured (.prettierrc.yml) but the lint CI workflow does NOT run prettier --check, only ESLint and typecheck.