I cleaned up my code so that it passed linting in Visual Studio Code with the following settings:
"python.linting.pylintEnabled": true,
"python.linting.pylintUseMinimalCheckers": false,
Then I ran pylint
directly and imagine my surprise when several new messages of a type "too-many-" popped up that I then accounted for in my source file with:
# pylint: disable=too-many-arguments,too-many-locals,too-many-branches
I headed over to the Linting Python in Visual Studio Code documentation and read that some specific things are still enabled/disabled. My question then is: how do I get Visual Studio Code to use Pylint the same as if it's running with no arguments and therefore enable messages like these?