Fix CI: migrate ESLint to v9 with neostandard flat config#49
Merged
Conversation
Removes [tmp](https://github.com/raszi/node-tmp). It's no longer used after updating ancestor dependencies [tmp](https://github.com/raszi/node-tmp), [eslint](https://github.com/eslint/eslint) and [rewire](https://github.com/jhnns/rewire). These dependencies need to be updated together. Removes `tmp` Updates `eslint` from 6.8.0 to 10.4.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v6.8.0...v10.4.0) Updates `rewire` from 5.0.0 to 9.0.1 - [Release notes](https://github.com/jhnns/rewire/releases) - [Changelog](https://github.com/jhnns/rewire/blob/master/CHANGELOG.md) - [Commits](jhnns/rewire@v5.0.0...v9.0.1) --- updated-dependencies: - dependency-name: tmp dependency-version: dependency-type: indirect - dependency-name: eslint dependency-version: 10.4.0 dependency-type: direct:development - dependency-name: rewire dependency-version: 9.0.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
Copilot
AI
changed the title
Bump tmp, eslint and rewire
Fix CI: migrate ESLint to v9 with neostandard flat config
May 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
npm ciwas failing because Dependabot bumpedeslintto^10.4.0, buteslint-plugin-import@2.32.0only peers up to ESLint 9, and the legacyeslint-config-standard@14+eslint-plugin-node@11stack uses APIs removed in ESLint 9+ (context.getScope()).Changes
^8.57.1→^9.39.4(highest version compatible with current plugin peer ranges).eslintrc.json→eslint.config.js(flat config, required from ESLint 9)eslint-config-standard@14,eslint-plugin-node@11(deprecated),eslint-plugin-standard@4(deprecated),eslint-plugin-import,eslint-plugin-promiseall removed in favour ofneostandard— the official ESLint-9 successor maintained by the standard teamNew
eslint.config.js:Preserves the same lint behaviour: Standard rules, Jest globals, all style rules disabled.