diff --git a/src/content/blog/2024-10-18-eslint-v9.13.0-released.md b/src/content/blog/2024-10-18-eslint-v9.13.0-released.md index 4da0f1436..773b43ca2 100644 --- a/src/content/blog/2024-10-18-eslint-v9.13.0-released.md +++ b/src/content/blog/2024-10-18-eslint-v9.13.0-released.md @@ -3,15 +3,19 @@ layout: post title: ESLint v9.13.0 released teaser: "We just pushed ESLint v9.13.0, which is a minor release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release." image: release-notes-minor.png -draft: true authors: - - eslintbot + - fasttime categories: - Release Notes tags: - Release --- +## Highlights + +* The predefined array of config objects used by ESLint can be now accessed programmatically as [`ESLint.defaultConfig`](https://eslint.org/docs/latest/integrate/nodejs-api#-eslintdefaultconfig). +* To speed up loading, the ESLint CLI will automatically enable V8's code cache in newer versions of Node.js. +* Custom languages can now provide their default options with the `defaultLanguageOptions` property. See the documentation about the [`Language` object](https://eslint.org/docs/latest/extend/languages#the-language-object).