From ab338e7a7e0444822a444adaaa62c3dc447022b1 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Thu, 20 Nov 2025 15:10:58 -0500 Subject: [PATCH] reversion --- .luacov | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.luacov b/.luacov index 841f35f..758eba7 100644 --- a/.luacov +++ b/.luacov @@ -2,10 +2,10 @@ 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", @@ -13,22 +13,11 @@ return { "tasks", "themes", "luarocks", - "loveStub", -- Exclude LÖVE stub from coverage }, - - -- Include patterns - focus coverage on core modules - include = { - "modules/", - "FlexLove%.lua", - }, - + -- Run reporter by default runreport = false, - + -- Delete stats file after reporting deletestats = false, - - -- Tick options - enable for better line-by-line tracking - -- Note: With cluacov this is faster than pure Lua luacov - tick = true, }