nvim.d/nvim/lua/plugins/config/lint.lua
Dan Anglin 53e001e681
feat: add mfussenegger/nvim-lint
- Add and configure mfussenegger/nvim-lint.
- Remove the golangci-lint-langserver from the LSP configuration.
2023-09-22 17:24:40 +01:00

11 lines
166 B
Lua

local ok, lint = pcall(require, "lint")
if not ok then
return
end
lint.linters_by_ft = {
go = {'golangcilint'},
sh = {'shellcheck'},
python = {'pylint'},
}