-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker-config.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathstryker-config.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
{
"$schema": "https://raw.githubusercontent.com/stryker-mutator/stryker-net/master/src/Stryker.Core/Stryker.Core/stryker-schema.json",
"stryker-config": {
"project-info": {
"name": "github.com/Widthdom/FolderDiffIL4DotNet",
"module": "FolderDiffIL4DotNet"
},
"test-projects": [
"FolderDiffIL4DotNet.Tests/FolderDiffIL4DotNet.Tests.csproj"
],
"project": "FolderDiffIL4DotNet.csproj",
"target-framework": "net8.0",
"mutation-level": "Standard",
"thresholds": {
"high": 80,
"low": 60,
"break": 40
},
"reporters": [
"html",
"json",
"progress",
"cleartext"
],
"concurrency": 4,
"language-version": "latest",
"mutate": [
"**/*.cs",
"!**/obj/**",
"!**/bin/**",
"!**/HtmlReport/**",
"!**/HtmlReportGenerateService*.cs",
"!**/ConsoleBanner.cs",
"!**/ConsoleSpinner.cs",
"!**/ConsoleRenderCoordinator.cs",
"!**/ProgressReportService.cs",
"!**/LoggerService.cs",
"!**/Program.cs",
"!**/ProgramRunner.cs",
"!**/ProgramRunner.*.cs",
"!**/Properties/**"
],
"ignore-mutations": [
"string",
"linq"
],
"ignore-methods": [
"Dispose",
"ToString",
"GetHashCode"
]
}
}