.prettierrc 250 B

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