# eslint-config-prettier v10.1.1 - Product: eslint-config-prettier (https://whatsnew.fyi/product/eslint-config-prettier) - Vendor: Prettier - Date: 2025-03-07 - Version: v10.1.1 - Original notes: https://github.com/prettier/eslint-config-prettier/releases/tag/v10.1.1 - Permalink: https://whatsnew.fyi/product/eslint-config-prettier/releases/v10.1.1 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **fixed** — Separate the /flat entry for compatibility with config-inspector by adding a name property to the flat config entry ###### Patch Changes - [#309](https://github.com/prettier/eslint-config-prettier/pull/309) [`eb56a5e`](https://github.com/prettier/eslint-config-prettier/commit/eb56a5e09964e49045bccde3c616275eb0a0902d) Thanks [@JounQin](https://github.com/JounQin)! - fix: separate the `/flat` entry for compatibility For flat config users, the previous `"eslint-config-prettier"` entry still works, but `"eslint-config-prettier/flat"` adds a new `name` property for [config-inspector](https://eslint.org/blog/2024/04/eslint-config-inspector/), we just can't add it for the default entry for compatibility. See also ```ts // before import eslintConfigPrettier from "eslint-config-prettier"; // after import eslintConfigPrettier from "eslint-config-prettier/flat"; ```