.prettierrc.js 269 B

1234567891011121314151617
  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: ['*.html'],
  11. options: {
  12. parser: 'go-template',
  13. },
  14. },
  15. ],
  16. };