21 lines
477 B
JavaScript
21 lines
477 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
plugins: ["prettier-plugin-tailwindcss"],
|
|
endOfLine: "auto",
|
|
arrowParens: "always",
|
|
bracketSpacing: true,
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
insertPragma: false,
|
|
bracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
printWidth: 100,
|
|
proseWrap: "preserve",
|
|
quoteProps: "as-needed",
|
|
requirePragma: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: "es5",
|
|
useTabs: false,
|
|
};
|