-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
55 lines (55 loc) · 1.73 KB
/
config.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
{
"author" : "Organization",
"description" : "Extension that implements parts of PocketMine-MP",
"name" : "rapidpm",
"extension-name" : "rapidpm",
"namespace" : "pocketmine",
"version" : "0.0.5",
"optimizer-dirs": [
"optimizers"
],
"extra-sources": [
"get_inf.c"
],
"optimizations" : {
"internal-call-transformation": true,
"call-gatherer-pass" : true,
"check-invalid-reads" : true,
"constant-folding" : true,
"local-context-pass" : true,
"static-constant-class-folding" : true,
"static-type-inference" : true,
"static-type-inference-second-pass" : true
},
"stubs" : {
"path" : "ide/%version%/%namespace%/",
"stubs-run-after-generate" : false
},
"verbose" : false,
"warnings" : {
"conditional-initialization" : true,
"invalid-array-index" : true,
"invalid-reference" : true,
"invalid-return-type" : true,
"invalid-typeof-comparison" : true,
"non-array-access" : true,
"non-array-append" : true,
"non-array-update" : true,
"non-valid-clone" : true,
"non-valid-decrement" : true,
"non-valid-fetch" : true,
"non-valid-increment" : true,
"non-valid-isset" : true,
"non-valid-new" : true,
"non-valid-objectupdate" : true,
"nonexistant-constant" : true,
"nonexistent-class" : true,
"nonexistent-function" : true,
"not-supported-magic-constant" : true,
"possible-wrong-parameter" : true,
"possible-wrong-parameter-undefined" : true,
"unreachable-code" : true,
"unused-variable" : true,
"unused-variable-external" : true
}
}