.prettierrc.cjs 177 B

123456789
  1. module.exports = {
  2. tabWidth: 2,
  3. semi: true,
  4. printWidth: 80,
  5. singleQuote: true,
  6. quoteProps: 'consistent',
  7. htmlWhitespaceSensitivity: 'strict',
  8. endOfLine: "auto"
  9. };