Skip to content

Releases: vuejs/eslint-config-prettier

v9.0.0

29 Dec 06:39
02a30df
Compare
Choose a tag to compare

Breaking Changes

  • Update eslint-config-prettier to v9 by @WikiRik in #18, which contains the following potential breaking change:

    Changed: unicode-bom is no longer turned off. Prettier preserves the BOM if you have one, and does not add one if missing. It was wrong of eslint-config-prettier to disable that rule. If you get ESLint errors after upgrading, either add "unicode-bom": "off" to your config to disable it again, or run ESLint with --fix to fix all files according to the rule (add or remove BOM). Thanks to Nicolas Stepien (@nstepien)!

v8.0.0

20 Jul 13:29
61ac373
Compare
Choose a tag to compare

Breaking Changes

  • Upgraded to Prettier v3; please check out the Prettier release blog for more details
  • Requires Node.js >= v14
  • Requires ESLint >= v8

v7.1.0

20 Jul 13:34
e1b2f7e
Compare
Choose a tag to compare

New Features

  • Added a skip-formatting ruleset b5933a9

v7.0.0

23 Dec 11:38
5ea85d9
Compare
Choose a tag to compare
  • Updated the dependencies and simplified the usage
  • We now recommend using this package along with @rushstack/eslint-patch

v6.0.0

17 Nov 16:40
505b058
Compare
Choose a tag to compare

Breaking Changes

  • move eslint:recommended to a separate recommended config, fixes #3. (de7a518)

eslint:recommended is no longer included in the default configuration.
Users of old versions need to update their extends to use @vue/prettier/recommended, or ['eslint:recommended', '@vue/prettier].

v5.1.0

17 Nov 15:56
3b416e3
Compare
Choose a tag to compare

New Features

  • Re-exports @typescript-eslint and standard configs, so that this config can be used in combination with @vue/typescript/recommended or @vue/standard (939f722)

v5.0.0

22 Jul 08:33
555f54a
Compare
Choose a tag to compare

Breaking Changes