danger
no-restricted-importsDisallows importing specific libraries. We disallow lodash as a whole in favour of specific imports
Examples
❌ Incorrect
import _ from 'lodash';
✅ Correct
import flatten from 'lodash/flatten';
Disallows importing specific libraries. We disallow lodash as a whole in favour of specific imports
❌ Incorrect
import _ from 'lodash';
✅ Correct
import flatten from 'lodash/flatten';