Skip to content

Instantly share code, notes, and snippets.

@zakariabinsaifullah
Created August 7, 2023 18:20
Show Gist options
  • Save zakariabinsaifullah/52007e3520bbc0847e960787bc0061e8 to your computer and use it in GitHub Desktop.
Save zakariabinsaifullah/52007e3520bbc0847e960787bc0061e8 to your computer and use it in GitHub Desktop.
Prettier Config on package.json file
"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