Currently, we support linting code imported with: ```javascript import { ifElse, cond } from 'ramda' ``` and: ```javascript import R from 'ramda' ``` but things like: ```javascript import { ifElse as if_else }, Ramda from 'ramda' ``` 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.