Skip to content

Instantly share code, notes, and snippets.

@Naturalclar
Last active January 21, 2019 07:40
Show Gist options
  • Save Naturalclar/ea3cc4de198b983b5b536a5765a65ae7 to your computer and use it in GitHub Desktop.
Save Naturalclar/ea3cc4de198b983b5b536a5765a65ae7 to your computer and use it in GitHub Desktop.
eslint-setup
// for Non-React Projects
module.exports = {
extends: ["airbnb-base", "plugin:prettier/recommended"]
};
// for React Projects
module.exports = {
extends: ["airbnb", "plugin:prettier/recommended"]
};

For Non-React Projects

yarn add -D eslint prettier eslint-config-airbnb-base eslint-plugin-import eslint-config-prettier eslint-plugin-prettier

For React Projects

yarn add -D eslint prettier eslint-config-airbnb eslint-plugin-import eslint-config-prettier eslint-plugin-prettier eslint-plugin-jsx-a11y eslint-plugin-react
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment