mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 20:01:36 +00:00
23 lines
520 B
JavaScript
23 lines
520 B
JavaScript
"use strict";
|
|
const tailwindConfig = require("prettier-plugin-tailwindcss");
|
|
|
|
module.exports = {
|
|
plugins: [tailwindConfig],
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: false,
|
|
quoteProps: "consistent",
|
|
jsxSingleQuote: true,
|
|
trailingComma: "all",
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: "always",
|
|
proseWrap: "preserve",
|
|
htmlWhitespaceSensitivity: "css",
|
|
endOfLine: "lf",
|
|
embeddedLanguageFormatting: "auto",
|
|
singleAttributePerLine: true,
|
|
};
|