25 lines
486 B
Plaintext
25 lines
486 B
Plaintext
-- LuaCov configuration for FlexLove
|
|
return {
|
|
-- Stats file location
|
|
statsfile = "luacov.stats.out",
|
|
|
|
-- Report file location
|
|
reportfile = "luacov.report.out",
|
|
|
|
-- Exclude patterns (files to ignore) - use exclude instead of include for better results
|
|
exclude = {
|
|
"testing",
|
|
"examples",
|
|
"tasks",
|
|
"themes",
|
|
"luarocks",
|
|
"loveStub",
|
|
},
|
|
|
|
-- Run reporter by default
|
|
runreport = false,
|
|
|
|
-- Delete stats file after reporting
|
|
deletestats = false,
|
|
}
|