-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy path.luacov
64 lines (61 loc) · 1.26 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
61
62
63
64
--- 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',
-- 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'] = {
'luacov$',
'luacov.reporter$',
'luacov.defaults$',
'luacov.runner$',
'luacov.stats$',
'luacov.tick$',
'term$',
'term.colors$',
'term.cursor$',
'term.init$',
'copas$',
'coxpcall$',
'mediator$',
'moonscript.*$',
'spec$',
'lua_install$',
'utils$',
'path$',
'tablex$',
'types$',
'modifiers$',
'class$',
'assertions$',
'dir$',
'assert$',
'List$',
'init$',
'loader$',
'core$',
'environment$',
'runner$',
'output_handler_loader$',
'execute$',
'util$',
'utfTerminal$',
'filter_loader$',
'context$',
'base$',
'block$',
'file_loader$',
'.luarocks$',
'$lua_install$',
'.lua$',
},
['include'] = {
'GSE$',
}
}