在 VSCode 中,防止 PyLance 警告:标识符中的无效字符
In VSCode, prevent PyLance warning: Invalid character in identifier
更新 VSCode 的 Python 插件后,PyLance 出现问题。
def (f, *args):
if f:
f(*args)
...导致“标识符中的字符无效”
如何禁用这些警告?
也许我需要创建 ./.vscode/settings.json
:
{
"python.analysis.disabled": [
"I want something like:", "invalid-character-in-identifier" ],
}
...但在 https://code.visualstudio.com/docs/python/settings-reference#_python-language-server-settings
上找不到合适的内容
我可以从 VSCode 中推断出我需要的令牌吗?
PS请不要批评unicode变量名的使用。这不是重点。变量名有效,从命令行运行。
这是一个错误:https://github.com/microsoft/pylance-release/issues/1286
期待在下一个 VSCode 版本中修复。
编辑:已修复!
更新 VSCode 的 Python 插件后,PyLance 出现问题。
def (f, *args):
if f:
f(*args)
...导致“标识符中的字符无效”
如何禁用这些警告?
也许我需要创建 ./.vscode/settings.json
:
{
"python.analysis.disabled": [
"I want something like:", "invalid-character-in-identifier" ],
}
...但在 https://code.visualstudio.com/docs/python/settings-reference#_python-language-server-settings
上找不到合适的内容我可以从 VSCode 中推断出我需要的令牌吗?
PS请不要批评unicode变量名的使用。这不是重点。变量名有效,从命令行运行。
这是一个错误:https://github.com/microsoft/pylance-release/issues/1286
期待在下一个 VSCode 版本中修复。
编辑:已修复!