Skip to content

Releases: prettier/eslint-plugin-prettier

v5.2.6

02 Apr 16:15
fa9607e
Compare
Choose a tag to compare

Patch Changes

v5.2.5

25 Mar 10:32
b2e195c
Compare
Choose a tag to compare

Patch Changes

v5.2.4

24 Mar 01:50
d670ebb
Compare
Choose a tag to compare

Patch Changes

v5.2.3

19 Jan 00:07
6fd7ba1
Compare
Choose a tag to compare

Patch Changes

v5.2.2

15 Jan 05:15
df123a5
Compare
Choose a tag to compare

Patch Changes

What's Changed

  • docs(README): fixes legacy ESlint configs link by @2KAbhishek in #686
  • fix: report node when loc not found by @ntnyq in #700

New Contributors

Full Changelog: v5.2.1...v5.2.2

v5.2.1

17 Jul 11:31
51324d9
Compare
Choose a tag to compare

Patch Changes

v5.1.3

10 Jan 03:34
248cd17
Compare
Choose a tag to compare

Patch Changes

Full Changelog: v5.1.2...v5.1.3

v5.1.2

24 Dec 05:28
v5.1.2
d102278
Compare
Choose a tag to compare

5.1.2

Patch Changes

  • #623 8210e44 Thanks @BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #621 2b09e7f Thanks @JounQin! - feat: support parsing markdown via eslint-mdx natively

    What means the following is unnecessary anymore when using with eslint-mdx/eslint-plugin-mdx!

    [
      {
        files: ["**/*.md"],
        rules: { "prettier/prettier": ["error", { parser: "markdown" }] },
      },
      {
        files: ["**/*.mdx"],
        rules: { "prettier/prettier": ["error", { parser: "mdx" }] },
      },
    ]

Full Changelog: v5.1.1...v5.1.2

v5.1.1

21 Dec 16:42
v5.1.1
5a51733
Compare
Choose a tag to compare

5.1.1

Patch Changes

v.5.1.0

19 Dec 22:47
183f45c
Compare
Choose a tag to compare

Minor Changes

  • #616 3856413 Thanks @BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

    // eslint.config.js
    const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended');
    
    module.exports = [
      // Any other config imports go at the top
      eslintPluginPrettierRecommended,
    ];

Patch Changes

  • #614 5270877 Thanks @BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config

  • #603 a63a570 Thanks @filiptammergard! - fix: specify eslint-config-prettier as peer dependency

    It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies.

New Contributors

Full Changelog: v5.0.1...v5.1.0