Linting support for python using the pylint library
A Visual Studio Code extension with support for the pylint linter. The extension ships with pylint=2.12.2. Settings Settings Default Description python.pylintArgs [] Custom arguments passed to pylint. E.g “python.pylintArgs” = [“–rcfile=”] python.pylintSeverity { “convention”: “Information”, “error”: “Error”, “fatal”: “Error”, “refactor”: “Hint”, “warning”: “Warning”, “info”: “Information” } Controls mapping of severity from pylint to VS Code severity when displaying in the problems window. You can override specific pylint error codes { “convention”: “Information”, “error”: “Error”, “fatal”: “Error”, “refactor”: “Hint”, “warning”: “Warning”, […]
Read more