Top "Pylint" questions

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

How to handle the pylint message: ID:W0612 Unused Variable

I'm updating some code to PEP 8 standard using pylint. Part of the code is throwing the W0612 unused variable error …

python coding-style pylint
pylint can't find QWidget and QApplication

import sys from PyQt5.QtWidgets import (QApplication, QWidget) app = QApplication(sys.argv) window = QWidget() window.setGeometry(50, 50, 500, 300) window.setWindowTitle('Hello, world') …

python pyqt pyqt5 pylint
pylint duplicate code false positive

I have this code in (many) of my Python files for a project. from __future__ import absolute_import from __future__ …

python pylint
How to specify a configuration file for pylint under windows?

I am evaluating pylint as source code checker and I would like to customize the maximum number of characters on …

python windows pylint
Disabling Pylint no member- E1101 error for specific libraries

Is there anyway to hide E1101 errors for objects that are created from a specific library? Our large repository is …

pandas pylint
pylint false positive E0401 import errors in vscode while using venv

I created a venv using python3.6 on my mac os in this folder /Users/kim/Documents/Apps/PythonApps/python36-miros-a3 …

python-3.x visual-studio-code virtualenv pylint python-venv
How to disable pylint no-self-use warning?

I'm coding in Python3 and using pylint to keep my code clean. I want to define something like interface class, …

python python-3.x pylint
How can I configure Pylint to check all things PEP8 checks?

Searching for an answer on Pylint's mailing list brings no interesting results. Pylint is known to be very customizable, so …

python coding-style lint pylint pep8
what is best practice to control "too many local variable in a function" without suppress and manipulate pylint settings?

I'm working to make sure python code files must be 10/10 score with regular pylint and pycodestyle. but, I'm getting hard …

python python-3.x pylint pycodestyle