Created
June 25, 2021 19:49
-
-
Save dance2die/c9ed57ac240e41339bdd084f0eba9e66 to your computer and use it in GitHub Desktop.
Prettier configuration, .prettierc for typescript
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
{ | |
"arrowParens": "always", | |
"bracketSpacing": true, | |
"embeddedLanguageFormatting": "auto", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxBracketSameLine": false, | |
"jsxSingleQuote": false, | |
"printWidth": 100, | |
"proseWrap": "preserve", | |
"quoteProps": "as-needed", | |
"requirePragma": false, | |
"semi": true, | |
"singleQuote": false, | |
"tabWidth": 2, | |
"trailingComma": "all", | |
"useTabs": false, | |
"vueIndentScriptAndStyle": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment