Skip to content

Instantly share code, notes, and snippets.

@glenhoooo
Created November 17, 2022 07:55
Show Gist options
  • Select an option

  • Save glenhoooo/5fabab1c376e22105b7d9166754b0b38 to your computer and use it in GitHub Desktop.

Select an option

Save glenhoooo/5fabab1c376e22105b7d9166754b0b38 to your computer and use it in GitHub Desktop.
prettierrc for web develop
{
"endOfLine": "auto",
"printWidth": 120,
"tabWidth": 2,
"singleQuote": false,
"useTabs": false,
"semi": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json", "trailingComma": "none" }
},
{
"files": "*.json",
"options": { "tabWidth": 2, "trailingComma": "none" }
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment