summaryrefslogtreecommitdiff
path: root/.luacov
blob: 4546a9c7ab1ae6dbe1bb7ea4df557f2dc1bbcaf1 (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 = {"macros%.fnl", "tests/.*", "luarocks/.*", "itable/.*", "lazy%-seq/.*", "fennel%-test/.*", "cljlib"},
   runreport = true,
   statsfile = "luacov.stats";
   reportfile = "luacov.report";
}