Last active
February 26, 2022 18:34
-
-
Save luizwhite/76d7ce56d99dbb6337b95d5288315e4b to your computer and use it in GitHub Desktop.
Install EsLint Prettier Packages - React/Node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn add eslint prettier -D | |
/* NEXT */ - (dont need to install eslint) | |
yarn add eslint-plugin-import-helpers@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* REACT */ | |
yarn add eslint-plugin-react@^7.21.5 eslint-config-airbnb@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript eslint-plugin-jsx-a11y@^6.4.1 eslint-plugin-react-hooks@^4 @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* NODE */ | |
yarn add eslint-config-airbnb-base@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment