有没有办法在 VS Code 上启用一条可视线来显示 PEP8 的限制?
There is a way to enable a visual line on VS Code to show the limit for PEP8?
我想在我的 VS Code 编辑器上看到一条垂直线。有办法显示吗?我该如何启用它?
我已经安装了 pylint 和 pep8。它似乎工作正常。我只想在我的编辑器中查看该行。
最简单的方法是使用 "editor.rulers" 设置。
settings.json:
{
"[python]": {
"editor.rulers": [100]
}
}
我想在我的 VS Code 编辑器上看到一条垂直线。有办法显示吗?我该如何启用它?
我已经安装了 pylint 和 pep8。它似乎工作正常。我只想在我的编辑器中查看该行。
最简单的方法是使用 "editor.rulers" 设置。
settings.json:
{
"[python]": {
"editor.rulers": [100]
}
}