generated from michael-rubel/laravel-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
infection.json5
44 lines (44 loc) · 1.19 KB
/
infection.json5
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
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
]
},
"testFramework": "pest",
"logs": {
"text": "php://stderr",
"github": true
},
// "logs": {
// "text": "infection.log"
// },
"mutators": {
"@default": true,
"IncrementInteger": {
"ignore": [
"MichaelRubel\\ValueObjects\\Collection\\Complex\\FullName::__construct"
]
},
"ConcatOperandRemoval": {
"ignore": [
"MichaelRubel\\ValueObjects\\Artisan\\ValueObjectMakeCommand::getDefaultNamespace"
]
},
"Concat": {
"ignore": [
"MichaelRubel\\ValueObjects\\Artisan\\ValueObjectMakeCommand::getDefaultNamespace"
]
},
"CastString": {
"ignore": [
"MichaelRubel\\ValueObjects\\Collection\\Primitive\\Boolean::handleNonBoolean"
]
},
"Ternary": {
"ignore": [
"MichaelRubel\\ValueObjects\\Collection\\Primitive\\Boolean::handleNonBoolean"
]
}
}
}