We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding any type of argument for PyLint to settings.json, seems to cause a major issue with linting.
For instance, adding this line to setting.json:
"python.linting.pylintArgs": ["--extension-pkg-whitelist=cv2"],
causes linting to bug out, outputting a bunch of warnings never seen before.
I have tested this with other commands as well, and all of them does the same thing.
{ "resource": "/c:/Work/ucpa-machine-learning/src/find_gaps_v2.py", "owner": "python", "code": "mixed-indentation", "severity": 4, "message": "Found indentation with tabs instead of spaces", "source": "pylint", "startLineNumber": 13, "startColumn": 1, "endLineNumber": 13, "endColumn": 1 }
{ "resource": "/c:/Work/ucpa-machine-learning/src/find_gaps_v2.py", "owner": "python", "code": "bad-whitespace", "severity": 2, "message": "No space allowed before comma", "source": "pylint", "startLineNumber": 29, "startColumn": 39, "endLineNumber": 29, "endColumn": 39 }
The text was updated successfully, but these errors were encountered:
Unfortunately the error message is coming from pylint (a third party package). Please report issues related to pylint on their repo
pylint
Sorry, something went wrong.
No branches or pull requests
Environment data
astroid 2.2.5
colorama 0.4.1
isort 4.3.17
lazy-object-proxy 1.3.1
mccabe 0.6.1
pip 19.0.3
pylint 2.3.1
setuptools 40.6.2
six 1.12.0
typed-ast 1.3.1
wrapt 1.11.1
opencv-python 3.4.1.15
Adding any type of argument for PyLint to settings.json, seems to cause a major issue with linting.
For instance, adding this line to setting.json:
causes linting to bug out, outputting a bunch of warnings never seen before.
I have tested this with other commands as well, and all of them does the same thing.
Steps to reproduce:
Example errors
{
"resource": "/c:/Work/ucpa-machine-learning/src/find_gaps_v2.py",
"owner": "python",
"code": "mixed-indentation",
"severity": 4,
"message": "Found indentation with tabs instead of spaces",
"source": "pylint",
"startLineNumber": 13,
"startColumn": 1,
"endLineNumber": 13,
"endColumn": 1
}
{
"resource": "/c:/Work/ucpa-machine-learning/src/find_gaps_v2.py",
"owner": "python",
"code": "bad-whitespace",
"severity": 2,
"message": "No space allowed before comma",
"source": "pylint",
"startLineNumber": 29,
"startColumn": 39,
"endLineNumber": 29,
"endColumn": 39
}
The text was updated successfully, but these errors were encountered: