pylint: warning C0116 - Missing function or method docstring (missing-function-docstring) pylint: warning R0912 - Too many branches (18/12) (too-many-branches) code example
Example: missing function or method docstring pylint
You can add "--errors-only" flag for pylint to disable warnings.
To do this, go to settings. Edit the following line:
"python.linting.pylintArgs": []
As
"python.linting.pylintArgs": ["--errors-only"]