Created
June 6, 2020 12:16
-
-
Save shinshin86/64db72a770967b4704290907eec0da2c to your computer and use it in GitHub Desktop.
Default settings for my prettier
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
################## | |
# Default settings for my prettier | |
################## | |
# Install prettier | |
```sh | |
yarn add --dev prettier | |
``` | |
# Add npm command | |
```json | |
"fmt": "prettier --write '**/*.{js,json,md,html}'" | |
``` | |
# Setting prettier | |
```json | |
"prettier": { | |
"singleQuote": true | |
}, | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment