A CLI tool that runs Prettier only on changed files in Git repositories, speeding up formatting by avoiding re-processing unchanged files. Version 0.0.5 is the latest and final release; the package is unmaintained and has been superseded by prettier-quick 2.x (under a different maintainer) and the official 'prettier --check' mode. It requires prettier as a peer dependency and supports Git only, with no ability to format unchanged files. Compared to lint-staged or husky integration, it offers a simpler but limited approach.
npm install prettier-quickVerified import paths — ran on the pinned version, not inferred.
Installs prettier and prettier-quick, then runs the tool on staged files (Git only).
Upgrade to prettier-quick@2 or migrate to prettier --check.
Use husky-hg or lint-staged with Mercurial instead.
Use prettier directly for full codebase formatting.
Run 'npm install --save-dev prettier'
Initialize a Git repository (git init) or run from within a Git repo.
Ensure there are staged or modified files with supported extensions.