Description
pylsp.plugins.flake8.hangClosing
is of type boolean
but the default value is null
. Should it not be true
or false
?
pylsp.plugins.flake8.maxLineLength
is of type integer
but should it not be number
(c.f pylsp.plugins.pycodestyle.maxLineLength
) or does it not matter?
pylsp.plugins.flake8.indentSize
is of type integer
but should it not be number
or does it not matter?
pylsp.plugins.flake8.select
is of type string array
but the default value is null
. Should it not be []
(c.f pylsp.plugins.pydocstyle.select
?
pylsp.plugins.jedi.env_vars
is of type object
but the default value is null
. Should it not be {}
?
pylsp.plugins.pycodestyle.hangClosing
is of type boolean
but the default value is null
. Should it not be true
or false
?
pylsp.plugins.pycodestyle.indentSize
is of type integer
but should it not be number
or does it not matter?
pylsp.plugins.pydocstyle.convention
is of type string
but the default value is null
yet the allowed values are "None"
, "numpy"
or "pep257"
. Should it not be "None"
instead of null
.
pylsp.rope.ropeFolder
is of type string array
but the default value is null
. Should it not be []
?
See also #263.