.prettierrc.json 600 B

12345678910111213141516171819202122232425
  1. {
  2. "printWidth": 90,
  3. "tabWidth": 4,
  4. "useTabs": false,
  5. "semi": true,
  6. "singleQuote": false,
  7. "trailingComma": "none",
  8. "bracketSpacing": true,
  9. "arrowParens": "avoid",
  10. "overrides": [
  11. {
  12. "files": [
  13. "**/login/pages/*.tsx",
  14. "**/account/pages/*.tsx",
  15. "**/login/Template.tsx",
  16. "**/account/Template.tsx",
  17. "**/login/UserProfileFormFields.tsx",
  18. "KcApp.tsx"
  19. ],
  20. "options": {
  21. "printWidth": 150
  22. }
  23. }
  24. ]
  25. }