mirror of
https://github.com/open-webui/docs
synced 2025-05-18 18:32:14 +00:00
16 lines
326 B
JavaScript
16 lines
326 B
JavaScript
// .prettierrc.mjs
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ["prettier-plugin-tailwindcss"],
|
|
trailingComma: "es5",
|
|
tabWidth: 2,
|
|
useTabs: true,
|
|
singleQuote: false,
|
|
semi: true,
|
|
bracketSameLine: false,
|
|
bracketSpacing: true,
|
|
jsxSingleQuote: false,
|
|
quoteProps: "as-needed",
|
|
endOfLine: "lf",
|
|
};
|