mirror of
https://github.com/vercel/commerce.git
synced 2025-07-25 11:11:24 +00:00
.github
.vscode
app
components
contexts
fonts
hooks
lib
public
.env.example
.eslintrc.js
.gitignore
.nvmrc
.prettierignore
README.md
license.md
middleware.ts
next.config.js
package.json
pnpm-lock.yaml
postcss.config.js
prettier.config.js
tailwind.config.js
tsconfig.json
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']
|
|
};
|