.prettierrc 322 B

12345678910111213141516171819
  1. {
  2. "printWidth": 80,
  3. "tabWidth": 4,
  4. "singleQuote": true,
  5. "trailingComma": "all",
  6. "proseWrap": "never",
  7. "overrides": [
  8. {
  9. "files": ".prettierrc",
  10. "options": {
  11. "parser": "json"
  12. }
  13. }
  14. ],
  15. "plugins": [
  16. "prettier-plugin-organize-imports",
  17. "prettier-plugin-packagejson"
  18. ]
  19. }