Skip to content

Releases: sheerun/prettier-standard

v16.3.0

23 Apr 11:12
Compare
Choose a tag to compare
  • Update all dependencies, including prettierx, eslint, and plugins

v16.2.1

13 Mar 14:28
Compare
Choose a tag to compare
  • Update all dependencies, including prettier and eslint
  • Add --stdin-filepath flag that can be used for editor integration #92

v15.0.1

28 Sep 13:14
Compare
Choose a tag to compare
  • 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

28 Aug 23:01
Compare
Choose a tag to compare
  • 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

27 Aug 20:35
Compare
Choose a tag to compare

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

19 Jan 16:35
Compare
Choose a tag to compare

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

v9.1.0

19 Jan 16:35
Compare
Choose a tag to compare

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

v9.0.0

19 Jan 15:44
Compare
Choose a tag to compare

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

05 Apr 10:42
Compare
Choose a tag to compare
  • Improve bootstrap time (minimist instead of meow)