return {

  -- filename to store stats collected
  ["statsfile"] = "luacov.stats.out",

  -- filename to store report
  ["reportfile"] = "luacov.report.out",

  -- Run reporter on completion? (won't work for ticks)
  runreport = true,

  -- Patterns for files to include when reporting
  -- all will be included if nothing is listed
  -- (exclude overrules include, do not include
  -- the .lua extension, path separator is always '/')
  ["include"] = { 'resty/session' },

  -- Patterns for files to exclude when reporting
  -- all will be included if nothing is listed
  -- (exclude overrules include, do not include
  -- the .lua extension, path separator is always '/')
  ["exclude"] = {
    "luacov$",
    "luacov/reporter$",
    "luacov/defaults$",
    "luacov/runner$",
    "luacov/stats$",
    "luacov/tick$",
  },

}