Top "Pylint" questions

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

How do I disable "TODO" warnings in pylint?

When running pylint on a python file it shows me warnings regarding TODO comments by default. E.g.: ************* Module foo …

pylint
invoking pylint programmatically

I'd like to invoke the pylint checker, limited to the Error signalling part, as part of my unit testing. so …

python coding-style automated-tests pylint
Pylint: Relative import should be

I'm checking a module with Pylint. The project has this structure: /builder __init__.py entity.py product.py Within product …

python pylint
Pylint warning for "useless super delegation"

Pylint raises the warning: Useless super delegation in method '__init__' (useless-super-delegation) for the SpecificError class below. class MyProjectExceptions(…

python python-2.7 super pylint
enabling pylint_django plugin in vscode, pylint stop working

That's my user settings in vscode { "python.pythonPath": "/Users/cristiano/miniconda3/envs/django-rest-2/bin/python", "python.linting.pylintEnabled": true, "python.…

django python-3.x visual-studio-code vscode-settings pylint
pytest fixtures Redefining name from outer scope [pylint]

I'm learning pytest and I lint my code with pylint. But pylint still complaints about: W0621: Redefining name %r from …

python pytest pylint fixture
Using Pylint in Ipython (Jupyter-Notebook)

I want to run Pylint or any equivalent while using Jupyter-Notebook. Is there a way to install and run Pylint …

python python-3.x jupyter-notebook pylint flake8
Change default python coding style

In python i'm following camelCase Naming style. I checked my code with "pylint" and it gives error for not following …

python pylint
Why does PyLint warn about no __init__?

We have numerous python classes that do not seem to need __init__, initialising them empty is either perfectly acceptable or …

python pylint
Disable all `pylint` 'Convention' messages

Background I find pylint useful, but I also find it is horrifically undocumented, has painfully verbose output, and lacks an …

python pylint