mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
13 lines
372 B
JavaScript
13 lines
372 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')],
|
|
pluginSearchDirs: ["."],
|
|
tailwindConfig: './tailwind.config.js',
|
|
};
|