Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shinshin86/64db72a770967b4704290907eec0da2c to your computer and use it in GitHub Desktop.
Save shinshin86/64db72a770967b4704290907eec0da2c to your computer and use it in GitHub Desktop.
Default settings for my prettier
##################
# 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