forked from Lowgular/lowgular-course-entry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoding-standards.json
61 lines (61 loc) · 1.33 KB
/
coding-standards.json
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
54
55
56
57
58
59
60
61
{
"workspace": {
"workspaceConfig": "angular.json",
"workspaceTsConfig": "tsconfig.json",
"libsFolder": "projects"
},
"entities": {
"component": {
"id": "component",
"type": "ANGULAR_COMPONENT",
"suffix": "Component",
"folder": "ui/$name$",
"insideOf": "App",
"config": {
"stylesExtension": "none",
"viewEncapsulation": "Emulated",
"selector": "generated",
"changeDetectionStrategy": "OnPush"
}
},
"dataService": {
"id": "dataService",
"type": "SERVICE",
"suffix": "Service",
"folder": "services",
"insideOf": "App"
},
"model": {
"id": "model",
"type": "DATA_STRUCTURE",
"suffix": "Model",
"folder": "model",
"insideOf": "App"
},
"response": {
"id": "response",
"type": "DATA_STRUCTURE",
"suffix": "Response",
"folder": "services",
"insideOf": "App"
}
},
"entityRelations": {
"component": {
"httpClient": "CONSTRUCTOR",
"dataService": "CONSTRUCTOR",
"component": "HTML"
},
"dataService": {
"model": "PARAMETER_AND_RETURN",
"response": "PARAMETER_AND_RETURN",
"httpClient": "CONSTRUCTOR"
},
"model": {
"model": "PROPERTY"
},
"response": {
"response": "PROPERTY"
}
}
}