Skip to content

Commit

Permalink
ci: fix: stylua check
Browse files Browse the repository at this point in the history
  • Loading branch information
dxrcy committed Jan 30, 2024
1 parent be1e6e4 commit d65092d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lua/nvim-tree/explorer/filters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,12 @@ function M.should_filter(path, status)
return false
end

return git(path, status.git_status) or buf(path, status.bufinfo) or dotfile(path) or binary(path) or custom(path) or
bookmark(path, status.bookmarks)
return git(path, status.git_status)
or buf(path, status.bufinfo)
or dotfile(path)
or binary(path)
or custom(path)
or bookmark(path, status.bookmarks)
end

function M.setup(opts)
Expand Down

0 comments on commit d65092d

Please sign in to comment.