-
Notifications
You must be signed in to change notification settings - Fork 53
/
.luacov
60 lines (48 loc) · 1.37 KB
/
.luacov
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
--- Global configuration file. Copy, customize and store in your
-- project folder as '.luacov' for project specific configuration
-- @class module
-- @name luacov.defaults
return {
-- default filename to load for config options if not provided
-- only has effect in 'luacov.defaults.lua'
["configfile"] = ".luacov",
-- filename to store stats collected
["statsfile"] = "luacov.stats.out",
-- filename to store report
["reportfile"] = "luacov.report.json",
-- Run reporter on completion? (won't work for ticks)
runreport = false,
-- Delete stats file after reporting?
deletestats = false,
-- Patterns for files to include when reporting
-- all will be included if nothing is listed
-- (exclude overrules include, do not include
-- the .lua extension)
["include"] = {
'30log'
},
-- Patterns for files to exclude when reporting
-- all will be included if nothing is listed
-- (exclude overrules include, do not include
-- the .lua extension)
["exclude"] = {
'tsc',
'telescope',
'loader',
'30log-clean',
'30log-global',
'luacov$',
'luacov/reporter$',
'luacov/defaults$',
'luacov/runner$',
'luacov/stats$',
'luacov/tick$',
},
-- configuration for luacov-coveralls reporter
["coveralls"] = {
-- ["debug"] = true;
["pathcorrect"] = {
{"/usr/local/share/lua/5.[12]", "src/lua"};
},
},
}