-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathprettier.config.mjs
More file actions
36 lines (36 loc) · 867 Bytes
/
prettier.config.mjs
File metadata and controls
36 lines (36 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @see https://prettier.io/docs/configuration
* @type {import("prettier").Config}
*/
export default {
plugins: ['prettier-plugin-tailwindcss', '@trivago/prettier-plugin-sort-imports'],
printWidth: 100,
useTabs: true,
tabWidth: 2,
semi: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'all',
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'avoid',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'css',
vueIndentScriptAndStyle: false,
endOfLine: 'lf',
embeddedLanguageFormatting: 'auto',
singleAttributePerLine: true,
importOrder: ['<THIRD_PARTY_MODULES>', '^src/(.*)$', '^@/(.*)$', '^[./]'],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
importOrderCaseInsensitive: true,
overrides: [
{
files: ['*.md', '.yaml'],
options: {
useTabs: false,
},
},
],
}