.prettierrc 362 B

12345678910111213141516
  1. {
  2. "printWidth": 100,
  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": ["prettier-plugin-organize-imports", "prettier-plugin-packagejson"]
  16. }