Skip to content

Instantly share code, notes, and snippets.

@leonmezu1
Created December 4, 2020 17:41
Show Gist options
  • Save leonmezu1/94d6ddd8d8e5657baac2416bf76d4178 to your computer and use it in GitHub Desktop.
Save leonmezu1/94d6ddd8d8e5657baac2416bf76d4178 to your computer and use it in GitHub Desktop.
Prettier Config For Microverse React Capstones
{
"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