Top "Pylint" questions

Pylint is a Python source code analyzer looking for bugs and signs of poor quality.

Visual Studio Code - removing pylint

Simple question - but any steps on how to remove pylint from a Windows 10 machine with Python 3.5.2 installed. I got …

python visual-studio-code vscode-settings pylint
Instance of 'SQLAlchemy' has no 'Column' member (no-member)

I'm currently trying to implement steam login into website. But I'm unable to get pass this error within the code. …

python python-3.x flask sqlalchemy pylint
visual studio code disable auto wrap long line

I use vs code to write python with pylint. When I press ctrl+S(save), the editor wrap a long …

python visual-studio-code pylint
How do I disable pylint unused import error messages in vs code

How do I disable these error messages from popping up in the problems box in vs code

python visual-studio-code pylint
Can Pylint error checking be customized?

I am using pydev where I have set up pylint. The problem is that even inside the comments, pylint reports …

python pydev pylint
how to use pylint in vim

I do not want to install another plugin, like pylint.vim, And today, I decide to use vim edit python …

linux vim sed pylint
PyLint Best Practices?

pyLint looks like a good tool for running analysis of python code. However, our main objective is to catch any …

python static-analysis pylint
Why doesn't Pylint like built-in functions?

I have a line like this: filter(lambda x: x == 1, [1, 1, 2]) Pylint is showing a warning: W: 3: Used builtin function 'filter' …

python list-comprehension pylint
Hide some maybe-no-member Pylint errors

The following Python fragment code gets analyzed by Pylint: if type(result) is array.array: read = result.tobytes() ... with the …

python python-3.4 pylint
pylint doesn't point to virtualenv python

I am pretty new to python and currenty I am trying to use pylint for checking code quality. I am …

python virtualenv pylint