Skip to content

Instantly share code, notes, and snippets.

@brunormferreira
Created January 31, 2020 00:18
Show Gist options
  • Save brunormferreira/8922e08af1d19afca7e3e844a1a552d4 to your computer and use it in GitHub Desktop.
Save brunormferreira/8922e08af1d19afca7e3e844a1a552d4 to your computer and use it in GitHub Desktop.
prettier config
module.exports = {
arrowParens: 'avoid',
bracketSpacing: true,
endOfLine: 'auto',
htmlWhitespaceSensitivity: 'css',
jsxBracketSameLine: false,
jsxSingleQuote: false,
printWidth: 80, // default: 80
proseWrap: 'preserve',
semi: true,
singleQuote: true, // default: false
tabWidth: 2,
trailingComma: 'es6', // default: none
useTabs: false,
};
need to check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment