Skip to content

Instantly share code, notes, and snippets.

@valmassoi
Created January 15, 2020 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valmassoi/ccb748bf4e9b034880de7643576b49db to your computer and use it in GitHub Desktop.
Save valmassoi/ccb748bf4e9b034880de7643576b49db to your computer and use it in GitHub Desktop.
eslint disallow getState
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.name='getState']",
"message": "Actions must be kept pure. Pass in the needed piece of state as a param."
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment