-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat(eslint-plugin): add new rule no-require-imports #199
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): add new rule no-require-imports #199
Conversation
Codecov Report
@@ Coverage Diff @@
## master #199 +/- ##
==========================================
+ Coverage 96.78% 96.78% +<.01%
==========================================
Files 55 56 +1
Lines 2516 2522 +6
Branches 372 372
==========================================
+ Hits 2435 2441 +6
Misses 42 42
Partials 39 39
|
10f3bc8
to
7ea0f4d
Compare
Adds the equivalent of TSLint's [`no-require-imports`](https://palantir.github.io/tslint/rules/no-require-imports/) rule.
7ea0f4d
to
1de278f
Compare
@bradzacher Thank you for your review :) I've addressed all the comments. Could you please check it out? |
Just thinking — would this be better suited as a rule in |
Not sure what's best here. I can try moving this over to |
I think the rule should stay here. |
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! |
Adds the equivalent of TSLint's
no-require-imports
rule.