diff --git a/src/content/blog/2024-09-16-eslint-v8.57.1-released.md b/src/content/blog/2024-09-16-eslint-v8.57.1-released.md index 5c857af29..80a2560c4 100644 --- a/src/content/blog/2024-09-16-eslint-v8.57.1-released.md +++ b/src/content/blog/2024-09-16-eslint-v8.57.1-released.md @@ -3,9 +3,8 @@ layout: post title: ESLint v8.57.1 released teaser: "We just pushed ESLint v8.57.1, which is a patch release upgrade of ESLint. This release fixes several bugs found in the previous release." image: release-notes-patch.png -draft: true authors: - - eslintbot + - mdjermanovic categories: - Release Notes tags: @@ -13,6 +12,15 @@ tags: --- +## Highlights + +Notable bug fixes related to the new config system (`eslint.config.js`): + +* Config `name` property can now also be used with global ignores. +* `--no-ignore` no longer applies to non-global ignores. +* The `FlatESLint#lintText()` method will now respect the `fixTypes` option when it is specified. + +This version also improves configuration error messages by including the `name` property (if specified on the config object that caused the error), or index in case of non-object elements in the config array.