jupyterlab-lsp
jupyterlab-lsp copied to clipboard
Comment string suggest wrong configuration syntax
I tried to use the suggested configuration from the comment string in the settings:
using:
{
pylsp: {
serverSettings: {
"pylsp.configurationSources": ['flake8'],
"pylsp.plugins.pyflakes.enabled": false,
"pylsp.plugins.flake8.enabled": true,
}
}
}
but these settings never showed an effect (I kept receiving pyflakes suggestions).
After changing above to:
{
"pylsp": {
"serverSettings": {
"pylsp.configurationSources": ['flake8'],
"pylsp.plugins.pyflakes.enabled": false,
"pylsp.plugins.flake8.enabled": true,
}
}
}
things were working. I suggest that the comment string should be updated to prevent others from being confused as well.
JLab version: 3.3.0 pylsp: 1.2.1