Merged
Conversation
🦋 Changeset detectedLatest commit: 524210a The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
Contributor
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #602 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 19 19
Lines 272 273 +1
Branches 48 50 +2
=========================================
+ Hits 272 273 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
90891bc to
1129472
Compare
1129472 to
524210a
Compare
JounQin
approved these changes
Feb 9, 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.
Initial checklist
Description of changes
packages/eslint-plugin-mdx/src/rules/remark.ts:contextproperty access to support both the deprecated in ESLint v9 (and completely removed in ESLint v10) methods (context.getSourceCode(),context.getFilename(),context.getCwd()), and the new ESLint v9+ properties (context.sourceCode,context.filename,context.cwd)./* istanbul ignore next */was used because the code handles backward compatibility for older versions of ESLint, which makes it difficult to test in a modern environment. Sincecontext.getSourceCode()and similar methods is a standard, well-known deprecated API, the risk of it failing is near zero..github/workflows/ci.yml:10(ESLint v10) to the ESLint test matrix.Breaking Changes
None. This PR maintains backward compatibility with supported ESLint versions.