Created
January 31, 2020 00:18
-
-
Save brunormferreira/8922e08af1d19afca7e3e844a1a552d4 to your computer and use it in GitHub Desktop.
prettier config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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