Error message “Linter pylint is not installed”

Open a terminal (ctrl+~) Run the command pip install pylint If that doesn’t work: On the off chance you’ve configured a non-default Python path for your editor, you’ll need to match that Python’s install location with the pip executable you’re calling from the terminal. This is an issue because the Python extension’s settings enable Pylint … Read more

Is it possible to ignore one single specific line with Pylint?

Pylint message control is documented in the Pylint manual: Is it possible to locally disable a particular message? Yes, this feature has been added in Pylint 0.11. This may be done by adding # pylint: disable=some-message,another-one at the desired block level or at the end of the desired line of code. You can use the message code or … Read more