Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(eslint-plugin): [no-deprecated] support computed member access #10867

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

azat-io
Copy link
Contributor

@azat-io azat-io commented Feb 22, 2025

PR Checklist

Overview

The rule now correctly detects deprecated properties when they are accessed using computed member expressions (obj['prop']), variables (const x = 'prop'; obj[x]).

@typescript-eslint
Copy link
Contributor

Thanks for the PR, @azat-io!

typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community.

The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately.

Thanks again!


🙏 Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently on https://opencollective.com/typescript-eslint.

Copy link

netlify bot commented Feb 22, 2025

Deploy Preview for typescript-eslint ready!

Name Link
🔨 Latest commit 2bc22e8
🔍 Latest deploy log https://app.netlify.com/sites/typescript-eslint/deploys/67c44eae57387a00081e0033
😎 Deploy Preview https://deploy-preview-10867--typescript-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 94 (🔴 down 4 from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (🟢 up 8 from production)
SEO: 98 (no change from production)
PWA: 80 (no change from production)
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

nx-cloud bot commented Feb 22, 2025

View your CI Pipeline Execution ↗ for commit 2bc22e8.

Command Status Duration Result
nx test eslint-plugin ✅ Succeeded 7m 34s View ↗
nx run eslint-plugin:test -- --coverage ✅ Succeeded 6m 6s View ↗
nx test eslint-plugin --coverage=false ✅ Succeeded 6m 23s View ↗
nx test visitor-keys ✅ Succeeded <1s View ↗
nx test utils ✅ Succeeded <1s View ↗
nx run types:build ✅ Succeeded <1s View ↗
nx run-many --target=build --exclude website --... ✅ Succeeded 18s View ↗
nx run-many --target=clean ✅ Succeeded 32s View ↗
Additional runs (25) ✅ Succeeded ... View ↗

☁️ Nx Cloud last updated this comment at 2025-03-02 12:42:16 UTC

Copy link

codecov bot commented Feb 22, 2025

Codecov Report

Attention: Patch coverage is 80.95238% with 4 lines in your changes missing coverage. Please review.

Project coverage is 87.42%. Comparing base (3c7b8ff) to head (2bc22e8).

Files with missing lines Patch % Lines
packages/eslint-plugin/src/rules/no-deprecated.ts 80.95% 3 Missing and 1 partial ⚠️

❌ Your patch check has failed because the patch coverage (80.95%) is below the target coverage (90.00%). You can increase the patch coverage or adjust the target coverage.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #10867      +/-   ##
==========================================
- Coverage   87.43%   87.42%   -0.01%     
==========================================
  Files         468      468              
  Lines       16040    16061      +21     
  Branches     4649     4658       +9     
==========================================
+ Hits        14025    14042      +17     
- Misses       1658     1661       +3     
- Partials      357      358       +1     
Flag Coverage Δ
unittest 87.42% <80.95%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
packages/eslint-plugin/src/rules/no-deprecated.ts 92.42% <80.95%> (-2.18%) ⬇️

@azat-io azat-io force-pushed the fix/no-deprecated-objects branch from ca1fc1f to c715c75 Compare February 24, 2025 20:41
@azat-io
Copy link
Contributor Author

azat-io commented Feb 24, 2025

Rebased.

Copy link
Member

@JoshuaKGoldberg JoshuaKGoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for getting this started! Codecov is surfacing that several logical branches aren't covered by tests - could you please test them?

@JoshuaKGoldberg JoshuaKGoldberg added the awaiting response Issues waiting for a reply from the OP or another party label Mar 2, 2025
@azat-io azat-io force-pushed the fix/no-deprecated-objects branch from c715c75 to febc81f Compare March 2, 2025 11:59
@azat-io azat-io force-pushed the fix/no-deprecated-objects branch from febc81f to 2bc22e8 Compare March 2, 2025 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting response Issues waiting for a reply from the OP or another party
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bug: [no-deprecated] doesn't report deprecated type index access
2 participants