dotfiles/.config/nvim/lua/linting.lua

12 lines
214 B
Lua
Raw Normal View History

2022-12-10 10:04:20 +01:00
require("lint").linters_by_ft = {
php = { "phpcs"},
lua = { "luacheck" },
sh = { "shellcheck" },
}
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
callback = function()
require("lint").try_lint()
end,
})