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.

23 regels
365 B

  1. {
  2. "arrowParens": "avoid",
  3. "endOfLine": "lf",
  4. "trailingComma": "all",
  5. "printWidth": 120,
  6. "singleQuote": true,
  7. "tabWidth": 4,
  8. "useTabs": true,
  9. "overrides": [
  10. {
  11. "files": ".prettierrc",
  12. "options": { "parser": "json" }
  13. },
  14. {
  15. "files": "*.md",
  16. "options": { "tabWidth": 2 }
  17. },
  18. {
  19. "files": "*.svg",
  20. "options": { "parser": "html" }
  21. }
  22. ]
  23. }