summaryrefslogtreecommitdiff
path: root/.luacov
blob: 1e6023e84c06ed376c0a4510a272f359256d7af7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-- -*- 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.out";
   reportfile = "luacov.report.out";
}