You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pylint can now read the source code from stdin in contrast to reading it from a normal file. Reading from stdin is already supported by many linters, but pylint got support for it last year.
To read the file from stdin you would have to call it like
cat source.py | pylint --from-stdin source.py
IMO this new feature should be used in pyls, because then pyls could report issues of unsaved changes in files. See line 50 of pylint_lint.py
Since version 2.4 pylint has support for reading files from memory (stdin) by using the
--from-stdin
cmd line optionpython-language-server/pyls/plugins/pylint_lint.py
Line 51 in 143d993
The text was updated successfully, but these errors were encountered: