.prettierrc.js 282 B

12345678910111213141516171819
  1. 'use strict';
  2. module.exports = {
  3. bracketSpacing: false,
  4. singleQuote: true,
  5. jsxBracketSameLine: true,
  6. trailingComma: 'all',
  7. printWidth: 120,
  8. overrides: [
  9. {
  10. files: [
  11. "*.html"
  12. ],
  13. options: {
  14. parser: "go-template"
  15. }
  16. }
  17. ],
  18. };