mirror of
https://github.com/zen-browser/www
synced 2026-04-26 01:24:57 +02:00
10 lines
218 B
JavaScript
10 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"],
|
|
};
|