-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prettierrc
More file actions
53 lines (48 loc) · 1.5 KB
/
.prettierrc
File metadata and controls
53 lines (48 loc) · 1.5 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"endOfLine": "lf",
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "always",
"emotionOrderConfigPath": ".emotionorderrc",
"emotionOrderSeperation": true,
"emotionOrderTextVisible": false,
"emotionOrderUndefinedPosition": "back",
"emotionOrderUndefinedSortMethod": "alpha",
"emotionOrderDefaultCategoryEnable": true,
"emotionOrderDefaultCategoryAddMode": "append",
"emotionOrderDefaultCategoryConflictPosition": "auto",
"emotionOrderDefaultCategoryConflictResolution": "merge",
"emotionOrderDefaultCategoryStyleAddMode": "prepend",
"emotionOrderDefaultCategoryConflictStylePosition": "auto",
"emotionOrderDefaultCategoryConflictTextResolution": "replace",
"emotionOrderNestedSeperation": true,
"emotionOrderNestedIndexSortMethod": "ascend",
"emotionOrderNestedUndefinedPosition": "front",
"emotionOrderNestedUndefinedSortMethod": "alpha",
"emotionOrderCaseInsensitiveStyle": true,
"emotionOrderCaseInsensitiveNested": true,
"importOrder": [
"^@ts/(.*)$",
"^@base/(.*)$",
"^@utils/(.*)$",
"^@hooks/(.*)$",
"^@pages/(.*)$",
"^@router/(.*)$",
"^@layout/(.*)$",
"^@common/(.*)$",
"^@recoils/(.*)$",
"^@constants/(.*)$",
"^@components/(.*)$",
"^@controllers/(.*)$",
"^@styles/(.*)$",
"^@assets/(.*)$",
"^[./]"
],
"importOrderSeparation": false,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"]
}