1
0
Fork 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",
lazy = true,
ft = {"java", "go", "html", "python"},
ft = {"java", "go", "html", "python", "php"},
config = function()
require('sonarlint').setup({
server = {
@ -34,6 +34,7 @@ return {
'go',
'html',
'python',
"php"
},
})
end