mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
20 lines
448 B
JavaScript
20 lines
448 B
JavaScript
/** @type {import("prettier").Options} */
|
|
export default {
|
|
trailingComma: "none",
|
|
tabWidth: 4,
|
|
semi: true,
|
|
singleQuote: false,
|
|
arrowParens: "always",
|
|
printWidth: 80,
|
|
useTabs: false,
|
|
|
|
plugins: [
|
|
"@ianvs/prettier-plugin-sort-imports",
|
|
"prettier-plugin-tailwindcss" // MUST come last
|
|
],
|
|
|
|
tailwindFunctions: ["classList"],
|
|
|
|
importOrder: ["<THIRD_PARTY_MODULES>", "", "^[~/]", "", "^[./]"]
|
|
};
|