Created
January 2, 2023 21:19
-
-
Save imhalid/42eb6291a35fc8cdb64bb286c55fada8 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
{ | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"endOfLine": "lf", | |
"bracketSameLine": false, | |
"jsxSingleQuote": true, | |
"printWidth": 80, | |
"proseWrap": "preserve", | |
"quoteProps": "as-needed", | |
"semi": false, | |
"singleQuote": true, | |
"tabWidth": 2, | |
"trailingComma": "all", | |
"useTabs": false, | |
"singleAttributePerLine": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment