import-js/eslint-plugin-import
View on GitHubCheck for importing named exports from CJS module
Open
#928 opened on Sep 15, 2017
enhancementhelp wanted
Description
With the new node.js 8.5 ESM support importing CJS modules as if they had named exports is not supported. (Unlike Babel)
Eg:
// bad
import { get } from 'lodash';
//good
import _ from 'lodash';
const get = _.get;
//good
import { get } from 'lodash-es';