Skip to content

Commit

Permalink
feat(pack): add luacheck linter to lua pack (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
RayJameson committed Jun 9, 2023
1 parent 4caa6da commit 569f4f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/astrocommunity/pack/lua/lua.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ return {
},
{
"jay-babu/mason-null-ls.nvim",
opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "stylua") end,
opts = function(_, opts)
opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "stylua", "luacheck" })
end,
},
}

0 comments on commit 569f4f8

Please sign in to comment.