Skip to content

Instantly share code, notes, and snippets.

@sryze
Created January 5, 2022 12:09
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 sryze/e4828941b3d5580a69fe617c2d80f17e to your computer and use it in GitHub Desktop.
Save sryze/e4828941b3d5580a69fe617c2d80f17e to your computer and use it in GitHub Desktop.
Base Prettier config (Prettier sucks though)
{
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"quoteProps": "consistent",
"trailingComma": "none",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "auto",
"printWidth": 120
}
@Vanilagy
Copy link

Common L for "useTabs": false

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment