2
I’m starting to use the VSCode
to work with Python
, and would like to set up the Pylint
to highlight|warnings errors while typing (such as PyCharm
makes), by default lints are only 'executed' in VSCode
when I save the file... Is there any way to change this behavior? Can you configure the Pylint
to behave as in PyCharm
and check the code while I’m still writing it?
My Vscode (Settings.json) settings for Python are as follows::
"python.pythonPath": "venv\\Scripts\\python.exe",
"python.autoComplete.addBrackets": true,
"python.analysis.completeFunctionParens": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--load-plugins=pylint_django",
"--disable=missing-docstring"
],
Thank you
Opa is this is a possibility! I come from
JS
and always left this option disabled so as not to generate error or problems like infinite loop inVue/React
etc... I thought with theDjango
could have the same effect but I’ve seen that it doesn’t. Thank you.– M.F