blob: 9e4a6c25de44242f5249b36303d69367016b38c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
-- -*- mode: lua; -*-
-- setting default behaviors for luacov. For documentation on the options,
-- see https://keplerproject.github.io/luacov/doc/modules/luacov.defaults.html
return {
exclude = {"src/fennel/macros.fnl"},
runreport = true,
statsfile = "luacov.stats";
reportfile = "luacov.report";
}
|