Skip to content

Instantly share code, notes, and snippets.

@emj365
Last active September 7, 2017 09:52
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 emj365/c0d50e92bf87d5695c4d469f7d456b05 to your computer and use it in GitHub Desktop.
Save emj365/c0d50e92bf87d5695c4d469f7d456b05 to your computer and use it in GitHub Desktop.
install eslint for reactjs by yarn
yarn add --dev eslint eslint-config-standard eslint-config-standard-react eslint-plugin-import eslint-plugin-node eslint-plugin-promise eslint-plugin-react eslint-plugin-standard
touch .eslintrc
cat > .eslintrc <<EOL
{
"extends": ["standard", "standard-react"]
}
EOL
touch .eslintignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment