Prettier Standard Versions Save

Formats with Prettier and lints with ESLint+Standard! (✿◠‿◠)

v16.3.0

4 years ago
  • Update all dependencies, including prettierx, eslint, and plugins

v16.2.1

4 years ago

v15.0.1

4 years ago
  • prettier-standard by default will format all files in repository, if no patterns are present
  • prettier-standard --staged for formatting just staged changes
  • fix: support all possible CLI globs for git repositories

v13.0.0

4 years ago
  • Added --chaged flag that allows to format just changed lines (requires git)
  • Added --since <branch> flag that allows to format just changes since given branch (requires git)

Also, --changed can be combined with --since <branch> and --check 💛

v12.0.0

4 years ago

This release is complete rewrite which avoids spawning external processes, it should be faster now! 🥂

  • --check flag has been introduced that behaves similarly to prettier --check
  • multiple patterns are now allowed to be provided

v9.1.1

5 years ago

Fix formatting files other than .js when passed as paths instead of stdin

v9.1.0

5 years ago

Add support for --parser flag that allows to format files other than .js when passed to stdin

v9.0.0

5 years ago

This release does not pass code through standard --fix to fix formatting, it uses prettierx instead.

Breaking changes:

  • Custom configuration happens through .prettierrc instead of .eslintrc
  • If you use eslint, you need to extend prettier and prettier/standard in .eslintrc
  • Output matches the output of prettier
  • Prettier upgraded to 16

v8.0.1

6 years ago
  • Improve bootstrap time (minimist instead of meow)