I'm using a Python3 virtual environment on Windows.
Here is the command I run from my virtual environment.
(myproject) C:\Users\jp\myproject> pylint src
When I run pylint, it only uses a subset of its checkers (missing-docstring
, broad-except
...). For example, it does not use attribute-defined-outside-init
.
How to get Pylint to use all (or most) of its checkers?