mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 08:55:32 +02:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
/** @type {import('prettier').Config} */
|
|
export default {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
semi: false,
|
|
singleQuote: true,
|
|
endOfLine: 'lf',
|
|
plugins: ['prettier-plugin-astro', 'prettier-plugin-tailwindcss'],
|
|
}
|