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.
Prerequisites checklist
What is the purpose of this pull request?
Created a new
config-helpers
packageWhat changes did you make? (Give an overview)
Added
packages/config-helpers
directory..github/ISSUE_TEMPLATE/bug-report.yml
and.github/ISSUE_TEMPLATE/change.yml
: Added@eslint/config-helpers
label to the issue templates. [1] [2].github/workflows/release-please.yml
: Added steps to publish the@eslint/config-helpers
package to npm and JSR, and to post release announcements..release-please-manifest.json
: Added@eslint/config-helpers
to the release manifest.README.md
: Updated the list of packages to include@eslint/config-helpers
.Related Issues
Refs eslint/eslint#19116
Is there anything you'd like reviewers to focus on?
UserConfig[index]
and extended configs are nowExtendedConfig[index]
. Using the bracket notation allows us to more clearly indicate the presence of a multidimensional array.extends
as an array of arrays at maximum instead of infinite nesting. I'd like to see how far we get with this.eslint/migrate-config
package in this PR or a separate one. I opted for a separate one for now, but let me know if you think differently.