22 lines
604 B
JSON
22 lines
604 B
JSON
{
|
|
"plugins": ["prettier-plugin-tailwindcss", "@trivago/prettier-plugin-sort-imports"],
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"jsxSingleQuote": true,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"printWidth": 100,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": true,
|
|
"bracketSameLine": false,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf",
|
|
"embeddedLanguageFormatting": "auto",
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"proseWrap": "preserve",
|
|
"quoteProps": "as-needed",
|
|
"importOrder": ["^react", "^next", "^@/(.*)$", "^[./]"],
|
|
"importOrderSeparation": true,
|
|
"importOrderSortSpecifiers": true
|
|
}
|