Conversation
There was a problem hiding this comment.
Pull request overview
This pull request upgrades eslint and related plugins, bringing back the import plugin and removing the standard plugin. The changes update linting dependencies to their latest versions and apply the corresponding formatting rules across the codebase.
Changes:
- Upgraded eslint from 9.28.0 to 9.39.2 and typescript-eslint from 8.20.0 to 8.54.0
- Brought back
eslint-plugin-importwith full flat config support and comprehensive import ordering rules - Removed
eslint-config-standardandeslint-plugin-prettierdependencies - Applied automatic formatting fixes across all source, test, and example files (import grouping, blank line additions)
Reviewed changes
Copilot reviewed 22 out of 23 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated eslint and plugin dependencies to latest versions, removed standard and prettier plugin |
| pnpm-lock.yaml | Updated lock file with new dependency versions and their transitive dependencies |
| eslint.config.js | Migrated from compat layer to native flat config, added comprehensive import plugin configuration |
| src/**/*.ts | Applied import ordering rules with blank lines between import groups and type imports |
| tests/**/*.ts | Applied import ordering rules, added blank lines, removed unnecessary eslint-disable comments |
| example/**/*.ts | Added blank lines between import groups per new import rules |
| benchmark/mongoose.js | Removed unnecessary eslint-disable comments, simplified catch block |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
b64ec7b to
2b930fd
Compare
nunomarks
approved these changes
Jan 27, 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.
Brings back the
importplugin.Removes the
standardplugin.