-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
feat(eslint-plugin): added new rule unbound-method #204
feat(eslint-plugin): added new rule unbound-method #204
Conversation
Adds the equivalent of TSLint's `no-unbound-method` rule.
Codecov Report
@@ Coverage Diff @@
## master #204 +/- ##
==========================================
- Coverage 97.2% 97.19% -0.01%
==========================================
Files 68 69 +1
Lines 2507 2534 +27
Branches 388 392 +4
==========================================
+ Hits 2437 2463 +26
Misses 44 44
- Partials 26 27 +1
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job overall, just the one weird typo
Apologies for the conflicts, we decided to remove the counts from the ROADMAP here: #225 They are too awkward to maintain manually, so this is the last time you will have to deal with syncing that up! |
Hey @JoshuaKGoldberg, sorry for the pain, but we just merged a big PR to convert the plugin to typescript. |
needs ts conversion
Whoohoo, TypeScript conversion! Absolutely more than worth the PR churn. 😄 Well, the build looks like it partially failed from DevOps flickering for a moment. Linting and formatting passes locally. I'll try to get to the other PRs soon!™ |
Ping @j-f1 (since you commented most recently) - is there anything I'm being waited on for this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
👋 @bradzacher is there something that needs to be done? I'd very much like to help migrate more rules from tslint to typescript-eslint but this and my other two PRs have been sitting for a while. 😢 |
Sorry for the slow process on some of your PRs @JoshuaKGoldberg - as soon as the merge conflicts are resolved, we'll get this in! |
dcd2d45
Thanks again, @JoshuaKGoldberg! |
Adds the equivalent of TSLint's
no-unbound-method
rule.