You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.prettierrc.json 269B

12345678910111213141516
  1. {
  2. "singleQuote": true,
  3. "arrowParens": "avoid",
  4. "trailingComma": "all",
  5. "printWidth": 90,
  6. "endOfLine": "auto",
  7. "bracketSameLine": false,
  8. "overrides": [
  9. {
  10. "files": ["**/*.html"],
  11. "options": {
  12. "singleQuote": false
  13. }
  14. }
  15. ]
  16. }