nvim.d/nvim/lua/plugins/config/lint.lua

12 lines
166 B
Lua
Raw Normal View History

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