Linting Python in Visual Studio Code
https://code.visualstudio.com/docs/python/linting03.11.2021 · See Pylint command-line arguments for general switches. Command-line arguments can be used to load Pylint plugins, such as the plugin for Django: "python.linting.pylintArgs": ["--load-plugins", "pylint_django"] Options can also be specified in a pylintrc or .pylintrc options file in the workspace folder, as described on Pylint command line ...
python - Visual Studio Code pylint: Unable to import ...
stackoverflow.com › questions › 43574995I got the same error on my vscode where I had a library installed and the code working when running from the terminal, but for some reason, the vscode pylint was not able to pick the installed package returning the infamous error: Unable to import 'someLibrary.someModule' pylint(import-error) The problem might arise due to the multiple Python installations. Basically you have installed a library/package on one, and vscode pylint is installed and running from another installation.