忽略 VS Code 中的错误 "Module 'arcpy.da' has no 'SearchCursor' member"

Ignore error "Module 'arcpy.da' has no 'SearchCursor' member" in VS Code

我在VS Code中用arcpy开发了很多脚本,每次用Cursor,VSCode都认为是错误:

它不会影响脚本性能,但是,有什么方法可以让 VS Code 忽略这种特殊类型的(它解释为)错误吗?

只是为了它们不会显示在问题面板中。

由于问题反复出现,请允许我以模块“cv2”为例

我们可以在“settings.json”中添加如下设置,忽略模块“cv2”的警告,不忽略其他模块的问题。 (由于pylint信息为我们提供了编辑代码的建议,所以建议您在关闭其信息之前确保代码可以执行。)

"python.linting.pylintArgs": ["--generated-members=cv2.*"],

之前:

之后: