Created
December 4, 2020 17:41
-
-
Save leonmezu1/94d6ddd8d8e5657baac2416bf76d4178 to your computer and use it in GitHub Desktop.
Prettier Config For Microverse React Capstones
This file contains 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
{ | |
"trailingComma": "all", | |
"tabWidth": 2, | |
"semi": true, | |
"singleQuote": true, | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"endOfLine": "lf", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxBracketSameLine": false, | |
"jsxSingleQuote": false, | |
"printWidth": 80, | |
"proseWrap": "preserve", | |
"quoteProps": "as-needed", | |
"requirePragma": false, | |
"useTabs": false, | |
"vueIndentScriptAndStyle": false, | |
"parser": "babel" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment