Skip to content

Instantly share code, notes, and snippets.

@ah584d
Last active December 8, 2021 16:30
Show Gist options
  • Select an option

  • Save ah584d/251d673aac30982185f9b230dc3001ea to your computer and use it in GitHub Desktop.

Select an option

Save ah584d/251d673aac30982185f9b230dc3001ea to your computer and use it in GitHub Desktop.
eslint-rule
'no-restricted-imports': [
ERROR,
{
name: 'lodash',
message: "Please use our ES6 module lodash import: ==> import { isNil } from '@lodash'",
},
{
name: 'lodash/chain',
message: 'This function is not exported as an ES6 module, please use an alternative',
},
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment