.prettierrc 360 B

123456789101112131415161718192021
  1. {
  2. "trailingComma": "none",
  3. "tabWidth": 4,
  4. "overrides": [
  5. {
  6. "files": "**/lwc/**/*.html",
  7. "options": { "parser": "lwc" }
  8. },
  9. {
  10. "files": "*.{cmp,page,component}",
  11. "options": { "parser": "html" }
  12. },
  13. {
  14. "files": "*.{js,json,html,cp,page,component}",
  15. "options": {
  16. "tabWidth": 2
  17. }
  18. }
  19. ]
  20. }