build(deps): bump eslint from 7.25.0 to 9.17.0 #4092
Merged
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 pull request includes significant updates to the ESLint configuration and various codebase improvements. The most important changes include the removal of the old ESLint configuration, the addition of a new ESLint configuration file, updates to the
package.json
dependencies, and the removal of unnecessary ESLint disable comments.ESLint Configuration Updates:
.eslintignore
: Removed the file as it is no longer needed..eslintrc.js
: Removed the old ESLint configuration file.eslint.config.mjs
: Added a new ESLint configuration file with updated settings and plugins.Package Updates:
package.json
: Updated dependencies to include new ESLint-related packages and removed obsolete ones. [1] [2] [3] [4]Codebase Simplification:
docs/components/PageContent.tsx
: Removed unnecessary ESLint disable comments and simplified regex patterns. [1] [2] [3] [4]src/Accordion/Accordion.tsx
,src/AutoComplete/Combobox.tsx
,src/Breadcrumb/Breadcrumb.tsx
,src/Card/Card.tsx
: Refactored React forwardRef functions for better readability. [1] [2] [3] [4]Testing Improvements:
Script Adjustments:
package.json
: Updated the lint script to remove the separate linting for JavaScript files, now covered by the TypeScript linting.