Top "Pylint" questions

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

How do I disable a Pylint warning?

I'm trying to disable warning C0321 ("more than one statement on a single line" -- I often put if statements …

python pylint
PyLint "Unable to import" error - how to set PYTHONPATH?

I'm running PyLint from inside Wing IDE on Windows. I have a sub-directory (package) in my project and inside the …

python virtualenv pylint pythonpath
Pylint "unresolved import" error in Visual Studio Code

I am using the following setup macOS v10.14 (Mojave) Python 3.7.1 Visual Studio Code 1.30 Pylint 2.2.2 Django 2.1.4 I want to use linting …

python django visual-studio-code pylint
How do I disable "missing docstring" warnings at a file-level in Pylint?

Pylint throws errors that some of the files are missing docstrings. I try and add docstrings to each class, method …

python pylint docstring
Linter pylint is not installed

I want to run python code in Microsoft Visual Studio Code but it gives an error: "Linter pylint is not …

python visual-studio-code pylint
PyLint, PyChecker or PyFlakes?

I would like to get some feedback on these tools on : features; adaptability; ease of use and learning curve.

python pylint pep8 pyflakes pychecker
Is it possible to ignore one single specific line with pylint?

I have the following line in my header: import config.logging_settings This actually changes my python logging settings, but …

python pylint
Python: avoiding pylint warnings about too many arguments

I want to refactor a big Python function into smaller ones. For example, consider this following code snippet: x = x1 + …

python refactoring pylint
How do I create a pylintrc file

I am running linux. Can I do something like pylint --generate-rcfile > .pylintrc and then make changes to the resulting .…

pylint
Pylint showing invalid variable name in output

I made a simple python script to post data on a website. #Imports url_to_short = sys.argv[1] post_url = …

python pylint