Last active
September 1, 2020 19:54
-
-
Save Vehmloewff/5ff8eff42956aabed915955f88437cc0 to your computer and use it in GitHub Desktop.
My go-to prettier configuration
This file contains 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
{ | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"endOfLine": "lf", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"printWidth": 140, | |
"proseWrap": "preserve", | |
"requirePragma": false, | |
"semi": false, | |
"quoteProps": "as-needed", | |
"jsxBracketSameLine": false, | |
"singleQuote": true, | |
"tabWidth": 4, | |
"trailingComma": "es5", | |
"useTabs": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment