-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc.json
More file actions
35 lines (35 loc) · 786 Bytes
/
Copy path.prettierrc.json
File metadata and controls
35 lines (35 loc) · 786 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
{
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"plugins": ["@ianvs/prettier-plugin-sort-imports", "prettier-plugin-organize-attributes"],
"attributeGroups": [
"^#",
"^:?is$",
"^v-for$",
"^v-(if|else-if|else)$",
"^v-bind$",
"^v-show$",
"^v-cloak$",
"^v-pre$",
"^v-once$",
"^:?id$",
"^:?ref$",
"^:?key$",
"^v-model$",
"^v-model:",
"^v-model.+$",
"^:?class$",
"^:(?!data-)",
"$DEFAULT",
"^:?data-",
"^@",
"^v-html$",
"^v-text$"
],
"importOrder": ["^@core/(.*)$", "", "^@server/(.*)$", "", "^@ui/(.*)$", "", "^[.]"],
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"],
"importOrderTypeScriptVersion": "5.0.0"
}