pylsp
configuration
#80
-
I've tried configuring the pycodestyle = {
enabled = false,
} but trying to set Does anyone have any idea on what might I be doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I tried to look for examples and found this old post. Translated the options to lsp-zero. local lsp = require('lsp-zero')
lsp.preset('recommended')
lsp.configure('pylsp', {
settings = {
pylsp = {
configurationSources = {'flake8'},
plugins = {
pycodestyle = {enabled = false},
flake8 = {
enabled = true,
ignore = {},
}
}
}
}
})
lsp.setup() |
Beta Was this translation helpful? Give feedback.
I tried to look for examples and found this old post. Translated the options to lsp-zero.