Visual Studio 代码中的 IronPython
IronPython in Visual Studio code
我想使用 visual studio 代码而不是 Revit-Dynamo python 节点。所以,我添加了 IronPython 存根并在这个 wiki 上执行了这些步骤 (https://github.com/gtalarico/ironpython-stubs). but I still get some errors. since it is irritating, is there a way to avoid these problems?Problems in VSCode with IronPython
您可以在 Pylint 中关闭此类警告,方法是使用自定义 .pylintrc
文件,通过您的 settings.json
在 command-line 上指定适当的标志,或者完全关闭 linting "python.linting.enabled": false
.
至于那些存根,您可以将它们添加到 "python.autoComplete.extraPaths"
中,但这不会影响 Pylint,只会影响 IntelliSense。
我想使用 visual studio 代码而不是 Revit-Dynamo python 节点。所以,我添加了 IronPython 存根并在这个 wiki 上执行了这些步骤 (https://github.com/gtalarico/ironpython-stubs). but I still get some errors. since it is irritating, is there a way to avoid these problems?Problems in VSCode with IronPython
您可以在 Pylint 中关闭此类警告,方法是使用自定义 .pylintrc
文件,通过您的 settings.json
在 command-line 上指定适当的标志,或者完全关闭 linting "python.linting.enabled": false
.
至于那些存根,您可以将它们添加到 "python.autoComplete.extraPaths"
中,但这不会影响 Pylint,只会影响 IntelliSense。