.prettierrc 257 B

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