.prettierrc.js 228 B

123456789101112
  1. module.exports = {
  2. tabWidth: 4,
  3. singleQuote: true,
  4. trailingComma: 'es5',
  5. printWidth: 140,
  6. overrides: [
  7. {
  8. files: '.prettierrc',
  9. options: { parser: 'json' },
  10. }
  11. ],
  12. };