Skip to content

Instantly share code, notes, and snippets.

@robpataki
Created October 25, 2023 15:54
Show Gist options
  • Save robpataki/8da4b43307093179d4a2a396a79e829a to your computer and use it in GitHub Desktop.
Save robpataki/8da4b43307093179d4a2a396a79e829a to your computer and use it in GitHub Desktop.
Prettier config (TypeScript, React, SCSS)
{
"printWidth": 132,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"overrides": [
{
"files": [
"*.css",
"*.scss",
"*.html"
],
"options": {
"singleQuote": false
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment