-
Notifications
You must be signed in to change notification settings - Fork 4
/
portkey.json
46 lines (45 loc) · 1013 Bytes
/
portkey.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
{
"lib/*.riml": {
"type": "app",
"related": ["lib/extensions/ember_extension.riml"],
"test": "spec/%s_spec.riml"
},
"lib/extensions/*_extension.riml": {
"type": "extension",
"related": ["lib/ember.riml", "lib/ember_plugin.riml"],
"test": "spec/extensions/%s_extension_spec.riml"
},
"lib/utils/*.riml": {
"type": "utility",
"test": "spec/utils/%s_spec.riml"
},
"lib/filters/*_filter.riml": {
"type": "filter",
"test": "spec/filters/%s_filter_spec.riml"
},
"portkeys/ember/*_portkey.json": {
"type": "portkey"
},
"syntax/*.vim": {
"type": "syntax"
},
"*": {
"type": "build"
},
"spec/*_spec.riml": {
"type": "spec",
"alternate": "lib/%s.riml"
},
"spec/extensions/*_spec.riml": {
"type": "spec",
"alternate": "lib/extensions/%s.riml"
},
"spec/utils/*_spec.riml": {
"type": "spec",
"alternate": "lib/%s.riml"
},
"spec/filters/*_spec.riml": {
"type": "spec",
"alternate": "lib/%s.riml"
}
}