mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
|
module.exports = {
|
||
|
singleQuote: true,
|
||
|
arrowParens: 'always',
|
||
|
trailingComma: 'none',
|
||
|
printWidth: 100,
|
||
|
tabWidth: 2,
|
||
|
// pnpm doesn't support plugin autoloading
|
||
|
// https://github.com/tailwindlabs/prettier-plugin-tailwindcss#installation
|
||
|
plugins: [require('prettier-plugin-tailwindcss')]
|
||
|
};
|