.prettierrc 193 B

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