.prettierrc 213 B

1234567891011121314
  1. {
  2. "printWidth": 120,
  3. "singleQuote": true,
  4. "trailingComma": "all",
  5. "arrowParens": "avoid",
  6. "overrides": [
  7. {
  8. "files": "*.sol",
  9. "options": {
  10. "singleQuote": false
  11. }
  12. }
  13. ]
  14. }