From 25af8e8ab77ab39e5fcebf02ad360c10b597baf3 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Wed, 13 May 2026 22:51:47 +0200 Subject: [PATCH] feat: add checkmake linter for Makefiles --- lua/weeheavy/plugins/lsp/nvim-lint.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/weeheavy/plugins/lsp/nvim-lint.lua b/lua/weeheavy/plugins/lsp/nvim-lint.lua index e2cbd1b..dbf41f0 100644 --- a/lua/weeheavy/plugins/lsp/nvim-lint.lua +++ b/lua/weeheavy/plugins/lsp/nvim-lint.lua @@ -44,6 +44,7 @@ return { sh = { "gitleaks" }, bash = { "gitleaks" }, go = { "golangcilint" }, + makefile = { "checkmake" }, } local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })