Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
Updates dependencies to their latest versions and adapts code to work with the new ESLint flat configuration format, along with Jest API deprecation fixes and ESLint compatibility updates.
- Migrated from legacy
.eslintrc.jsto modern flat config format with ES modules - Updated deprecated Jest matchers from
toBeCalled/toBeCalledWithtotoHaveBeenCalled/toHaveBeenCalledWith - Applied various code fixes to maintain ESLint compliance with updated rules
Reviewed Changes
Copilot reviewed 17 out of 19 changed files in this pull request and generated 14 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates all dependencies to latest versions |
| .eslintrc.js | Migrates from legacy config format to flat config with ES modules |
| .eslintignore | Removed in favor of ignores array in flat config |
| test/*.test.ts | Updates deprecated Jest matchers to current API |
| src/*.ts | Adds eslint-disable linebreak-style comments and minor code improvements |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
ElormCoch
approved these changes
Oct 13, 2025
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.
This PR Updates most of the dependencies, as a result some code had also been updated, here is a list of the highlights:
.eslintrc.js: The new eslint version requires the use of a flat file for configuration, so I moved the previous format to the new one.toBeCalledwithtoHaveBeenCalledWithas former has been deprecatedtoBeCalledWithwithtoHaveBeenCalledWithas former has been deprecatedmoduleandtargeton tsconfig toES2020ES2022.eslintignoreas usage in a single file is disallowed by new version of eslint, instead added ignorePattern in new config file