Created
August 7, 2023 18:20
-
-
Save zakariabinsaifullah/52007e3520bbc0847e960787bc0061e8 to your computer and use it in GitHub Desktop.
Prettier Config on package.json file
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
"prettier": { | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxBracketSameLine": false, | |
"jsxSingleQuote": false, | |
"printWidth": 140, | |
"proseWrap": "preserve", | |
"quoteProps": "as-needed", | |
"requirePragma": false, | |
"semi": true, | |
"singleQuote": true, | |
"tabWidth": 4, | |
"trailingComma": "none", | |
"useTabs": false, | |
"rangeStart": 0 | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment