Skip to content

Instantly share code, notes, and snippets.

@DarrenBaldwin07
Last active March 7, 2024 14:19
Show Gist options
  • Save DarrenBaldwin07/d9a46ebb6cf305226bc79d8fbf090c24 to your computer and use it in GitHub Desktop.
Save DarrenBaldwin07/d9a46ebb6cf305226bc79d8fbf090c24 to your computer and use it in GitHub Desktop.
Prettier config
{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": true,
"printWidth": 80,
"proseWrap": "preserve",
"jsxSingleQuote": true,
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 200
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment