.prettierrc 228 B

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