Last active
January 4, 2020 21:05
-
-
Save nandanmen/7a4c5d9309d0619205f522fcde28d945 to your computer and use it in GitHub Desktop.
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 -D eslint eslint-config-prettier eslint-plugin-prettier prettier | |
| touch .eslintrc | |
| echo '{ | |
| "extends": [ | |
| "plugin:prettier/recommended" | |
| ], | |
| "parserOptions": { | |
| "ecmaVersion": 2019 | |
| }, | |
| "plugins": ["prettier"], | |
| "rules": { | |
| "prettier/prettier": "error" | |
| } | |
| }' > .eslintrc | |
| touch .prettierrc | |
| echo '{ | |
| "semi": false, | |
| "singleQuote": false, | |
| "tabWidth": 2 | |
| }' > .prettierrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment