.prettierrc 273 B

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