prettier.config.js 187 B

123456789
  1. module.exports = {
  2. semi: false,
  3. singleQuote: true,
  4. endOfLine: 'lf',
  5. tabWidth: 2,
  6. jsxBracketSameLine: true,
  7. trailingComma: 'none',
  8. plugins: ['prettier-plugin-tailwindcss']
  9. }