Skip to content

Instantly share code, notes, and snippets.

@krrskl
Last active February 24, 2022 16:45
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 krrskl/84fd98d16116b556e420e341bf82981f to your computer and use it in GitHub Desktop.
Save krrskl/84fd98d16116b556e420e341bf82981f to your computer and use it in GitHub Desktop.
Prettier configurations
{
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": true,
"useTabs": false,
"proseWrap": "preserve",
"arrowParens": "avoid",
"jsxSingleQuote": false,
"htmlWhitespaceSensitivity": "css",
"endOfLine": "auto",
"quoteProps": "as-needed"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment