.prettierrc.json 372 B

12345678910111213141516171819202122
  1. {
  2. "plugins": ["prettier-plugin-solidity"],
  3. "trailingComma": "es5",
  4. "tabWidth": 4,
  5. "semi": false,
  6. "singleQuote": false,
  7. "useTabs": true,
  8. "printWidth": 120,
  9. "overrides": [
  10. {
  11. "files": "*.sol",
  12. "options": {
  13. "parser": "slang",
  14. "printWidth": 120,
  15. "tabWidth": 4,
  16. "useTabs": true,
  17. "singleQuote": false,
  18. "bracketSpacing": true
  19. }
  20. }
  21. ]
  22. }