-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
29 lines (29 loc) · 861 Bytes
/
.prettierrc
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
{
"semi": false,
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 160,
"jsxSingleQuote": true,
"singleAttributePerLine": false,
"bracketSameLine": false,
"bracketSpacing": true,
"quoteProps": "as-needed",
"tabWidth": 2,
"useTabs": false,
"vueIndentScriptAndStyle": true,
"trailingComma": "es5",
"arrowParens": "always",
"insertPragma": false,
"requirePragma": false,
"proseWrap": "never",
"htmlWhitespaceSensitivity": "strict",
"rangeStart": 0,
"overrides": [
{ "files": ["*.yaml", "*.yml"], "options": { "tabWidth": 2, "printWidth": 88 } },
{ "files": ["*.json"], "options": { "printWidth": 200 } }
],
"importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"]
}