Ignore unused param warning

This commit is contained in:
ghostbuster91 2025-08-10 17:32:49 +02:00
parent cc256800b8
commit ba2d11fcd8
No known key found for this signature in database

View File

@ -43,7 +43,8 @@ end
---@param expansion_count integer
---@param node Node
---@return boolean
local function descend_until_empty(expansion_count, node)
local function descend_until_empty(expansion_count, node) --luacheck: ignore 212
local dir = node:as(DirectoryNode)
if not dir then
return false