I have a Flask (v0.10.1) application using Flask-SQLAlchemy (v2.0) and I\'m trying to configure Pylint to check it. Running with Python 3.4.2.
First error was:
The one that worked for me was switching to flake8 python linter. Below are the steps:
Open VSCode and run Ctrl+Shift+P (for Windows Users)
In the VSCode Search prompt, type Python:Select Linter
. You will see a list of all Linters and select flake8
.
If you do not have flake8
installed as a VScode extension for pylint, it will prompt you to install it. Proceed and install it.