Skip to content

Commit ff49fba

Browse files
committed
fix: ignore some mutants
1 parent 50473b5 commit ff49fba

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

infection.json.dist

+10-7
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,25 @@
1111
}
1212
},
1313
"mutators": {
14+
"@default": true,
1415
"global-ignore": [
1516
"Vural\\OpenAPIFaker\\SchemaFaker\\BooleanFaker"
1617
],
1718
"LessThan": {
18-
"ignoreSourceCodeByRegex": [
19-
".*\\$minimum.*",
20-
".*\\$maximum.*"
19+
"ignore": [
20+
"Vural\\OpenAPIFaker\\SchemaFaker\\ArrayFaker::generate"
2121
]
2222
},
2323
"GreaterThan": {
24-
"ignoreSourceCodeByRegex": [
25-
".*\\$minimum.*",
26-
".*\\$maximum.*"
24+
"ignore": [
25+
"Vural\\OpenAPIFaker\\SchemaFaker\\ArrayFaker::generate"
2726
]
2827
},
29-
"@default": true
28+
"CastInt": {
29+
"ignore": [
30+
"Vural\\OpenAPIFaker\\SchemaFaker\\NumberFaker::generate"
31+
]
32+
}
3033
},
3134
"timeout": 20
3235
}

0 commit comments

Comments
 (0)