/ prettier.config.js
prettier.config.js
 1  /** @type {import('prettier').Config} */
 2  module.exports = {
 3    arrowParens: 'always',
 4    bracketSpacing: true,
 5    semi: true,
 6    useTabs: false,
 7    trailingComma: 'none',
 8    singleQuote: true,
 9    tabWidth: 2,
10    endOfLine: 'lf',
11    plugins: [require.resolve('prettier-plugin-tailwindcss')]
12  };