import-js/eslint-plugin-import
View on GitHubNew feature - get error at multiple named import
Open
#1,994 opened on Feb 24, 2021
help wantedrule proposal
Description
For better code split and tree shake, need this to warn/error
// WANT THIS
// not ok
import { a, b } from 'package'
// ok
import { a } from 'package/a'
import { b } from 'package/b'
but have this (want Inverted(?) group-exports rule)

If possible, with regex, to ignore selected packages (like react, storybook, @types, etc)