python-language-server icon indicating copy to clipboard operation
python-language-server copied to clipboard

Pycodestyle settings not used (windows only!)

Open zerocewl opened this issue 5 years ago • 0 comments

The settings from the pycodestyle.cfg are not used any longer on windows 10.

After the monaco editor comes up the pycodestyle rules are applied ignoring the settings e.g.:

[pycodestyle]
enabled = false
ignore = E226, E722, W504, E501
max-line-length = 121
exclude = test/plugins/.ropeproject,test/.ropeproject

Bisecting shows that this issue comes with changes in pyls v0.36. V0.36.1 shows the same issue.

Using v0.35.1 fixed the issue as workaround.

workaround: Installing pyls < 0.36 e.g.

pip install "python-language-server<0.36"

Note: Linux and mac seem to work fine.

This might be an path issue?!?

zerocewl avatar Nov 10 '20 13:11 zerocewl