.prettierrc 458 B

123456789101112131415161718192021222324
  1. {
  2. "printWidth": 120,
  3. "tabWidth": 2,
  4. "singleQuote": true,
  5. "trailingComma": "none",
  6. "semi": false,
  7. "wrap_line_length": 120,
  8. "wrap_attributes": "auto",
  9. "proseWrap": "always",
  10. "arrowParens": "avoid",
  11. "bracketSpacing": true,
  12. "jsxBracketSameLine": true,
  13. "useTabs": false,
  14. "eslintIntegration":true,
  15. "overrides": [
  16. {
  17. "files": ".prettierrc",
  18. "options": {
  19. "parser": "json"
  20. }
  21. }
  22. ],
  23. "endOfLine": "auto"
  24. }