Skip to content

Commit d300f37

Browse files
committed
luacheck hack
1 parent a965c65 commit d300f37

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lua/nvim-tree/node/init.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ function BaseNode:has_one_child_folder()
6363
return #self.nodes == 1 and self.nodes[1].nodes and vim.loop.fs_access(self.nodes[1].absolute_path, "R") or false
6464
end
6565

66+
--luacheck: push ignore 212
6667
---Update the GitStatus of the node
6768
---@param parent_ignored boolean
6869
---@param status table?
6970
function BaseNode:update_git_status(parent_ignored, status) ---@diagnostic disable-line: unused-local
7071
end
72+
--luacheck: pop
7173

7274
---@return GitStatus?
7375
function BaseNode:get_git_status()

0 commit comments

Comments
 (0)