Skip to content

Instantly share code, notes, and snippets.

@cihat
Forked from ilkaydnc/prettier-config.md
Created September 12, 2021 12:08
Show Gist options
  • Save cihat/0ca7f0d016bf6897eb8977ce176c324d to your computer and use it in GitHub Desktop.
Save cihat/0ca7f0d016bf6897eb8977ce176c324d to your computer and use it in GitHub Desktop.
My Prettier Config
With React
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"printWidth": 80,
"singleQuote": true,
"useTabs": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "strict"
}
Just Nodejs
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"printWidth": 100,
"singleQuote": true,
"useTabs": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
"arrowParens": "avoid"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment