BLD: update all dependecies to latest, except eslint#83
Merged
shilorigins merged 3 commits intomainfrom Mar 25, 2026
Merged
Conversation
running ./.husky/pre-commit produces the following warning: "husky - DEPRECATED Please remove the following two lines from ./.husky/pre-commit: . "$(dirname -- "$0")/_/husky.sh" They WILL FAIL in v10.0.0" This warning is removed by this change.
7bff1cf to
3aca2bc
Compare
eslint v10 requires migrating config from .eslintrc format to "flat" format @typescript-eslint/eslint-plugin and @typescript-eslint/parser v8 removes rules and would require reconfiguration includes code changes migrating Grid to MUI v7
3aca2bc to
7242b29
Compare
YektaY
approved these changes
Mar 25, 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.
Description
pnpm upgrade --latest, then manually restoredeslint,@typescript-eslint/eslint-plugin, and@typescript-eslint/parserversions inpackage.jsonpnpm installandpnpm devpnpm run lint./.husky/pre-commitMotivation
eslintisn't upgraded because v10 (latest) doesn't support the.eslintrc.cjsconfig format, which we are using, and v9 only supports this format with a compatibility setting. To upgradeeslint, we must migrate our config to the new "flat" config format.@typescript-eslintplugins aren't upgraded because v8 removes rules that are currently being used, so the esling config would have to be reconfigured.Closes #67
Screenshots
Pre-merge checklist