-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.prettierrc
44 lines (44 loc) · 835 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"singleQuote": true,
"importOrder": [
"^zone.js(.*)$",
"^@angular/(.*)$",
"^rxjs(.*)$",
"<THIRD_PARTY_MODULES>",
"^@ngx-glide/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"classProperties",
"decorators-legacy"
],
"attributeGroups": [
"$ANGULAR_STRUCTURAL_DIRECTIVE",
"$ANGULAR_ANIMATION",
"$ANGULAR_ELEMENT_REF",
"$CLASS",
"$ID",
"$NAME",
"$DATA",
"$SRC",
"$FOR",
"$TYPE",
"$HREF",
"$VALUE",
"$TITLE",
"$ALT",
"$ROLE",
"$ARIA",
"$DEFAULT",
"$ANGULAR_ANIMATION_INPUT",
"$ANGULAR_INPUT",
"$ANGULAR_OUTPUT",
"$ANGULAR_TWO_WAY_BINDING"
],
"attributeSort": "ASC"
}