mirror of
https://github.com/prdlk/website.git
synced 2026-08-02 17:31:41 +00:00
24 lines
410 B
JavaScript
24 lines
410 B
JavaScript
/** @type {import("@types/prettier").Options} */
|
|||
|
|
export default {
|
||
|
|
printWidth: 100,
|
||
|
|
semi: true,
|
||
|
|
singleQuote: false,
|
||
|
|
tabWidth: 2,
|
||
|
|
useTabs: true,
|
||
|
|
plugins: ["prettier-plugin-astro", "prettier-plugin-tailwindcss" /* Must come last */],
|
||
|
|
overrides: [
|
||
|
|
{
|
||
|
|
files: "**/*.astro",
|
||
|
|
options: {
|
||
|
|
parser: "astro",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
files: ["*.mdx", "*.md"],
|
||
|
|
options: {
|
||
|
|
printWidth: 80,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|