Watch
1
0
Fork
You've already forked dotfiles
0

nvim: Enable SonarLint for Python

This commit is contained in:
Olli 2025-09-20 11:54:02 +02:00
commit 3d14a58707

View file

@ -2,7 +2,7 @@ return {
{ {
url = "https://gitlab.com/schrieveslaach/sonarlint.nvim", url = "https://gitlab.com/schrieveslaach/sonarlint.nvim",
lazy = true, lazy = true,
ft = {"java", "go", "html", "python"}, ft = {"java", "go", "html", "python", "php"},
config = function() config = function()
require('sonarlint').setup({ require('sonarlint').setup({
server = { server = {
@ -34,6 +34,7 @@ return {
'go', 'go',
'html', 'html',
'python', 'python',
"php"
}, },
}) })
end end