-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.lua
40 lines (40 loc) · 1.08 KB
/
settings.lua
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
data:extend{
{
type = "bool-setting",
name = "coverage-startup",
setting_type = "runtime-global",
default_value = false,
order="coverage-10-startup",
},
{
type = "string-setting",
name = "coverage-include-modstates",
setting_type = "runtime-global",
default_value = "",
allow_blank = true,
order="coverage-20-include-modstates",
},
{
type = "string-setting",
name = "coverage-exclude-modfiles",
setting_type = "runtime-global",
default_value = "[\"coverage\"]",
allow_blank = true,
order="coverage-30-exclude-modfiles",
},
{
type = "string-setting",
name = "coverage-nopath-mods",
setting_type = "runtime-global",
default_value = "",
allow_blank = true,
order="coverage-40-nopath-mods",
},
{
type = "bool-setting",
name = "coverage-include-nohit-lines",
setting_type = "runtime-global",
default_value = false,
order="coverage-50-include-hohit-lines",
},
}