-
Notifications
You must be signed in to change notification settings - Fork 11
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
Support for Ramda imported with alias #17
Comments
I’ve worked on this a while ago but haven’t had time to finish it, see 013b2a5 (branch In addition to |
Currently we don’t even check imports, so e.g. the following code would cause false-positive problems reported by
|
Would this enhancement cover the following case too? import * as _ from 'ramda' Can we globally(per project) set somewhere in the configuration file that the namespace is not |
I think this should be covered. |
Currently, we support linting code imported with:
and:
but things like:
won't be caught by the linter.
We need to think about a way to checking how Ramda was imported to figure out what to lint and avoid false positives or false negatives.
The text was updated successfully, but these errors were encountered: