Created
September 26, 2020 12:30
-
-
Save janhesters/18ed174cf071bbf06b3b60557f53ef54 to your computer and use it in GitHub Desktop.
Configure 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
{ | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxBracketSameLine": false, | |
"jsxSingleQuote": false, | |
"printWidth": 80, | |
"proseWrap": "always", | |
"quoteProps": "as-needed", | |
"requirePragma": false, | |
"semi": true, | |
"singleQuote": true, | |
"tabWidth": 2, | |
"trailingComma": "all", | |
"useTabs": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment