-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfection.json5.dist
71 lines (69 loc) · 2.09 KB
/
infection.json5.dist
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
62
63
64
65
66
67
68
69
70
71
{
"$schema": "./vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
]
},
"logs": {
"text": "dist/infection.log"
},
"tmpDir": "dist/infection",
"mutators": {
"@default": true,
"MBString": false,
"global-ignore": [
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::getNonDebugMakeFlags"
],
"CastString": {
"ignore": [
// Testing that getenv() does not return a string is difficult there.
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::getNonDebugMakeFlags"
]
},
"Concat": {
"ignoreSourceCodeByRegex": [
// This transformation is useless here. Also note that it is probably not a "contact" but a string
// permutation.
".+\\$charactersToTrim = \\$multiline \\?.+",
]
},
"FalseValue": {
"ignore": [
"Fidry\\Makefile\\Parser::parsePrerequisites"
]
},
"FunctionCallRemoval": {
"ignore": [
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::executeCommand",
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::executeInDirectory"
]
},
"GreaterThan": {
"ignore": [
"Fidry\\Makefile\\Test\\Constraint\\SinglePrerequisitePhony::checkHasOnePrerequisite"
]
},
"MethodCallRemoval": {
"ignore": [
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::getTimeout"
]
},
"PublicVisibility": false,
"SpreadOneItem": {
"ignore": [
"Fidry\\Makefile\\Parser::parsePrerequisites"
]
},
"UnwrapArrayValues": {
"ignore": [
"Fidry\\Makefile\\Parser::parseLine"
]
},
"UnwrapFinally": {
"ignore": [
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::executeInDirectory"
]
}
}
}