Skip to content

Instantly share code, notes, and snippets.

@brandonstephens
Created January 27, 2020 15:01
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 brandonstephens/0b0d4ce684bb8dceacde81fcd9538135 to your computer and use it in GitHub Desktop.
Save brandonstephens/0b0d4ce684bb8dceacde81fcd9538135 to your computer and use it in GitHub Desktop.
Prettier Config
module.exports = {
semi: false,
tabWidth: 2,
singleQuote: true,
printWidth: 120,
trailingComma: 'es5',
parser: 'babylon',
files: ['*.html', '*.css', '*.js', '*.jsx', '*.md'],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment