mirror of
https://github.com/zen-browser/www.git
synced 2025-07-10 02:05:31 +02:00
9 lines
218 B
JavaScript
9 lines
218 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"],
|
|
};
|