mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
singleQuote: true,
|
|
arrowParens: 'always',
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
plugins: ['prettier-plugin-tailwindcss']
|
|
};
|