.prettierrc 430 B

1234567891011121314151617181920212223
  1. {
  2. "printWidth": 400,
  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. "overrides": [
  15. {
  16. "files": ".prettierrc",
  17. "options": {
  18. "parser": "json"
  19. }
  20. }
  21. ],
  22. "endOfLine": "auto"
  23. }