mirror of
https://github.com/msva/lua-htmlparser.git
synced 2024-11-04 23:34:20 +00:00
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
--- 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 = {
|
|
"/foo$",
|
|
"/foo/.+$",
|
|
},
|
|
|
|
-- 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 = {
|
|
},
|
|
|
|
-- configuration for luacov-coveralls reporter
|
|
coveralls = {
|
|
|
|
-- debug = true;
|
|
|
|
pathcorrect = {
|
|
{"^.-/share/lua/5.%d/", "src/lua/"};
|
|
},
|
|
|
|
},
|
|
|
|
}
|