Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Last active July 19, 2020 04:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyktommy/c4ca9f5405c9bcbc703987a8c3f37528 to your computer and use it in GitHub Desktop.
Save kyktommy/c4ca9f5405c9bcbc703987a8c3f37528 to your computer and use it in GitHub Desktop.
javascript prettier config
{
"arrowParens": "avoid",
"trailingComma": "none",
"jsxBracketSameLine": true,
"printWidth": 100,
"singleQuote": true,
"semi": false,
"tabWidth": 2
}
// install vscode prettier plugin,
// or install prettier command,
// prettier --write "**/*.js"
module.exports = {
arrowParens: 'avoid',
trailingComma: 'none',
jsxBracketSameLine: true,
printWidth: 100,
singleQuote: true,
semi: false,
tabWidth: 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment