mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-10 18:21:11 +01:00
d1003d98e9
Fixes python linting to work when python venv is activated. https://gist.github.com/Norbiox/652befc91ca0f90014aec34eccee27b2
32 lines
906 B
Lua
32 lines
906 B
Lua
return {
|
|
"mfussenegger/nvim-lint",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
local lint = require("lint")
|
|
|
|
lint.linters_by_ft = {
|
|
javascript = { "eslint_d" },
|
|
typescript = { "eslint_d" },
|
|
javascriptreact = { "eslint_d" },
|
|
typescriptreact = { "eslint_d" },
|
|
svelte = { "eslint_d" },
|
|
python = { "pylint" },
|
|
}
|
|
|
|
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
|
|
|
|
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {
|
|
group = lint_augroup,
|
|
callback = function()
|
|
lint.try_lint()
|
|
end,
|
|
})
|
|
|
|
vim.keymap.set("n", "<leader>l", function()
|
|
lint.try_lint()
|
|
end, { desc = "Trigger linting for current file" })
|
|
|
|
require('lint').linters.pylint.cmd = 'python'
|
|
require('lint').linters.pylint.args = {'-m', 'pylint', '-f', 'json'}
|
|
end,
|
|
}
|