如何从 VScode python 代码中删除此警告?

How to remove this warning from VScode python code?

在我的 python 代码中,我到处都看到以下警告;

Missing function or method docstringpylint(missing-function-docstring)

如何删除此警告?

我正在使用 VS 代码 v1.64.0,Microsoft Python Visual Studio 代码 v2022.0.1786462952 的扩展。

根据评论中提供的提示,我设法找到了问题的答案。

编辑在 .vscode 文件夹中找到的 settings.json。

在下面添加;

{
    "python.linting.pylintArgs": [
        "--disable=C0116",        
    ],    
}

多亏了这里的另一个答案,我的答案才找到