Skip to content

Instantly share code, notes, and snippets.

@mtheoryx
Created November 25, 2018 16:54
Show Gist options
  • Save mtheoryx/3a90ee30cf6bcbff65430b5a29faae1a to your computer and use it in GitHub Desktop.
Save mtheoryx/3a90ee30cf6bcbff65430b5a29faae1a to your computer and use it in GitHub Desktop.
Configure your own custom prettier rules
{
"arrowParens": "avoid",
"bracketSpacing": false,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": true,
"jsxSingleQuote": false,
"parser": "babylon",
"printWidth": 80,
"proseWrap": "always",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment